// JavaScript Document
win = null;
function NewWindow(mypage,w,h,scrll)
{
if (win && win.open && !win.closed)
	{win.focus() ;}
else
	{LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrll+',resizable,status=yes'
	win = window.open(mypage,"help",settings)
	}
}

// End of Script

