<!-- Begin

function NewWindow( mypage, myname, w, h, scroll, t, l, size, stat, loc, tools, menues )
{

if (myname == null)
{
	myname = "NewPage"
}

if (w == null)
{
	w = 750
}

if (h == null)
{
	h = 400
}

if (scroll == null)
{
	scroll = "yes"
}

if (t == null)
{
	TopPosition = l
}
else
{
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0
}

if (l == null)
{
	LeftPosition = l
}
else
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0
}

if (size == null)
{
	size = "yes"
}

if (stat == null)
{
	stat = "yes"
}

if (tools == null)
{
	tools = "yes"
}

if (loc == null)
{
	loc = "yes"
}

if (menues == null)
{
	menues = "yes"
}

// TopPosition = 10
settings = 'height=' + h + ', width=' + w + ', top=' + TopPosition + ', left=' + LeftPosition + ', scrollbars=' + scroll + ', resizable=' + size + ', status=' + stat + ', location=' + loc + ', toolbar=' + tools + ', menus=' + menues
win = window.open(mypage, myname, settings)
if (win.window.focus)
{
	win.window.focus()
}
}

// End -->
