<!--

var newwin;
function openWindow(winurl,winname,w,h,s)
{
	var x = (window.screen.width - w)/2;
	var y = (window.screen.height - h-25)/2;
	winfeatures="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=" + 
	w + ",height=" + h + ",top=" + y + ",left=" + x + ",screenX=" + x + ",screenY=" + y ; 
	if (javascript_version=1.2)	{
		newwin=window.open(winurl,winname,winfeatures);
		newwin.resizeTo(w,h);
		newwin.moveTo(x, y);
	}
	else {
		newwin=window.open(winurl,"",winfeatures);
	}
	newwin.focus();
	setTimeout('newwin.focus();',500);
}


//-->
