<!-- 
var remotewin;

function openwin(url,name,w,h,sx,sy,lbar,tbar,mbar,rez,scr,stat)
{
  var params="";
  params+="width="+w+",height="+h;
  if (sx + "xxx" != "xxx") params+=",left="+sx;
  if (sy + "xxx" != "xxx") params+=",top="+sy;
  if (lbar + "xxx" != "xxx") params += ",location=" + lbar;
  if (tbar + "xxx" != "xxx") params += ",toolbar=" + tbar;
  if (mbar + "xxx" != "xxx") params += ",menubar=" + mbar;
  if (rez + "xxx" != "xxx")  params += ",resizable=" + rez;
  if (scr + "xxx" != "xxx")  params += ",scrollbars=" + scr;
  if (stat + "xxx" != "xxx") params += ",status=" + stat;
  remotewin = window.open("",name,params);
  if (url + "xxx" != "xxx") remotewin.location.href = url;
  if (remotewin.opener == null) remotewin.opener = window;
  remotewin.focus();
  return remotewin;
}

function go2link(url) { opener.location.href=url; }
function go2link_close(url) { opener.location.href=url; self.close(); }

//-->

