<!--
function opennewwin(url){
	var newwin;
	var posx=380;
	var posy=300;
	var widthtemp=screen.width/2;
	widthtemp=630;
	var heighttemp=410;
	var tempstr="menubar=no,location=no,scrollbars=yes,status=no,toobar=no,resizable=no,width="+widthtemp+",height="+heighttemp+",screenX="+posx+",screenY="+posy+",left="+posx+",top="+posy;
	newwin=window.open(url,"newwin",tempstr);
	newwin.focus();
}
//-->