function pop(theurl) {
  window.open(theurl,'MobilePop','scrollbars=yes,width=550,height=400');
}


function defpopup(url,popname,w,h,scrbr) {

  paramtrs="width="+w+",height="+h+",scrollbars="+scrbr;
  win = window.open(url, popname, paramtrs);
  win.focus(); // bring the pop-up window to the top of the desktop
  false;

}

function popup(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=325,height=400,left = 465,top = 312');");
}