// JavaScript Document
function popupEvent(ev, w, h) { 
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2; 
  win = window.open("/english/calendar/escalEV.php?ev=" + ev + "&readFile=0&readSQL=1","ESCalendar","scrollbars=yes,status=no,location=no,toolbar=no,menubar=no,directories=no,resizable=yes,width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + "");
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } 
  } 

function popUp(url){
	window.open(url,"pop","width=580,height=360,toolbars=0,scrollbars=1")
}
