function gotosite(site)
{
	if (site != "")
	{
		location.href=site;
	} 
}
var win = null;
function NewWindow(mypage,myname,w,h,scroll)
{
	w = (screen.width > w) ? w : screen.width;
	h = (screen.height > h) ? h : (screen.height - 50);
	LeftPosition = (screen.width > w) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height > h) ? (screen.height-h)/2 : 0;
	settings =  'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	//settings =  'height='+h+',width='+w+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	win.focus();
}
