//<a href="javascript:popup('/xxxx/xxxxx.html','pop','820','680',0,0,0,1,0,1);"></a>

function popup(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize) {
  Astr = "";
  if(Awidth != "")Astr+= "width=" + Awidth;
  if(Astr != "")Astr+=",";
  if(Aheight != "")Astr+= "height=" + Aheight;
  if(Astr != "")Astr+=",";
  if(Atoolbar)Astr+= "toolbar";
  if(Alocation)Astr+= ",location";
  if(Astatus)Astr+= ",status";
  if(Ascroll)Astr+= ",scrollbars";
  if(Amenu)Astr+= ",menubar";
  if(Aresize)Astr+= ",resizable";
  openwindow = window.open(Aurl,Aname,Astr);
  openwindow.focus();
}
