<!--
var dwin = null; 
function pop_d(theURL,hs,vs,sc) { 
 xpos=1;
 ypos=1;
 if (hs>640) { sc="yes"; }

  if (hs==640) { 
   if (sc=="yes") { hs=hs+20;}
   xpos=10;
   ypos=10;
  }
 hsyn="left=";
 vsyn="top=";
  if (navigator.appName == "Netscape") {
   hsyn="screenX=";
   vsyn="screenY";
  }
 if (dwin && !dwin.closed) { dwin.close(); }
 dwin=window.open(theURL,"dwin","toolbar=yes,scrollbars="+sc+",width="+hs+",height="+vs+","+hsyn+xpos+","+vsyn+ypos);
 dwin.focus();
}
//-->
