// JavaScript Document
var popUpWin=0;
function popUpWindow(URLStr, szer, wys) 
	{
 	//	if(popUpWin)
  	//{
    //	if(!popUpWin.closed) popUpWin.close();
  	//}
	var width = szer, height = wys;
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	popUpWin = window.open(URLStr, 'info', ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+szer+',height='+wys+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	//if (!popUpWin.blur()) {popUpWin.close()};
	//onBlur="javascript:popUpWin.close()";
}

