// JavaScript Document

// popUp windows
// usage HREF="javascript:popUp('url', x, y)"
// width=400, height=450
function popUp(URL, wWidth, wHeight) {
  if (!wWidth){wWidth=760;};
  if (!wHeight){wHeight=630;};
  window.open(URL,null,'toolbar=no,menubar=no,resizable=no,location=no,statusbar=no,scrollbars=yes,width='+wWidth+',height='+wHeight+',left='+((screen.width-wWidth)/2)+',top='+((screen.height-wHeight)/7*3))
}
function popUpDownload(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=450,left = 490,top = 175');");
}