

function popup(theurl,theheight,thewidth)  {
  var myWin=null;
  var options;
  options="scrollbars=yes,menubar=no,height="+theheight+",width="+thewidth;
   myWin=window.open(theurl,"popup",options);
   myWin.focus();
  //myLink.target=windowName;
  }
