//-------------------------------------------------------------------------------------
  function WINpopup(sURL,swidth){
	dateWin=window.open(sURL,'','width='+swidth+' ,height=' + screen.height + ',left=0,top=0,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no,dependent=no');	
	dateWin.focus();
}
//-------------------------------------------------------------------------------------
  function WINpopupCenter(sURL,swidth,sheight,toolbar){
  Wh=(screen.height-sheight)/2;
  Ww=(screen.width-swidth)/2;
  tbar="no";
  if(toolbar)tbar="yes";
	dateWin=window.open(sURL,'','width='+swidth+' ,height=' + sheight + ',left='+Ww+',top='+Wh+',toolbar='+tbar+',location=no,status=no,scrollbars=yes,resizable=no,menubar='+tbar+',dependent=no');	
	dateWin.focus();
}


