 <!-- Begin
function popUp(URL,iWidth,iHeight) {
if (iWidth>0)
  myW=iWidth;
else
  myW=500;
  
if (iHeight>0)
  myH=iHeight;
else
  myH=400;
  
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + myW + ',height=' + myH + ',left = 160,top = 0');");
}
// End -->
