//-------------------------------------------------------------------------------------
  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 WINpopupfull(sURL){
	dateWin=window.open(sURL,'full','width='+screen.width+' ,height=' + screen.height + ',left=0');	
	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();
}
//-------------------------------------------------------------------------------------
  function MAILPopup(mail){
	dateWin=window.open('./NEWSshow.php?nID='+mail,'hirlevel','width=680,height=700,left=' + ((screen.width-570)/2) + ',top=' + ((screen.height-600)/2) + ',toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,menubar=no,dependent=no');
	dateWin.title='zoller a király';
	dateWin.focus()
}

