<!--
function CenterWindow(mypage, w, h) {
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;		
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no';		
  win = window.open(mypage, 'popup1', winprops);
  win.focus();
}

function CenterWindowPrint(mypage, w, h) {
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;		
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,location=no,menubar=yes,toolbar=yes,resizable=yes';		
  win = window.open(mypage, 'popup2', winprops);
  win.focus();
}

function TopWindowPrint(mypage, w, h) {
  var winl = (screen.width - w) / 2;
  var wint = 0;
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,location=no,menubar=yes,toolbar=yes,resizable=yes';		
  win = window.open(mypage, 'popup3', winprops);
  win.focus();
}

function CenterWindowScroll(mypage, w, h) {
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;		
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes,location=no,menubar=no,toolbar=no';		
  win = window.open(mypage, 'popup4', winprops);
  win.focus();
}

function TopWindowScroll(mypage, w, h) {
  var winl = (screen.width - w) / 2;
  var wint = 0;		
  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes';	
  win = window.open(mypage, 'popup5', winprops);
  win.focus();
}

function ShowCal(ctrl, dat){
  var mypage = '../../Utilities/calendarPopup.aspx?control='+ctrl+'&dat='+dat;
  var winl = (screen.width - 178) / 2;
  var wint = (screen.height - 140) / 2;		
  winprops = 'height=140,width=178,top='+wint+',left='+winl+',scrollbars=no,resizable=no';		
  win = window.open(mypage, 'popup6', winprops);
  win.focus();
}
//-->