function no_popup(URL,Width,Height)
 {
  day = new Date();
  id = day.getTime();
//  Width = parseInt(Width) + 20;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=" + Width + ",height=" + Height + "');");
 }

function sc_popup(URL,Width,Height)
 {
  day = new Date();
  id = day.getTime();
 // Width = parseInt(Width) + 20;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=" + Width + ",height=" + Height + "');");
 }

