<!--
function openPop(wURL, wName, W, H, status, resizable, scrollbars, Location, directories, toolbar, menubar) {
   app = navigator.appName.toUpperCase();
   agent = navigator.userAgent.toUpperCase();
   if (scrollbars) {
     if((agent.index0f('WIN') != -1) || ((app.index0f('NETSCAPE') != -1) && (agent.index0f('MAC') != -1))) {
       W +=16;
       H +=16;
   }
}

L = Math.round((screen.width-W)/2);
T = Math.round((screen.height-H)/2)-30;

Property = "Left=" + L;
Property += ",top=" + T;
Property += ",width=" + W;
Property += ",height=" + H;
Property += ",status=" + status;
Property += ",resizable=" + resizable;
Property += ",scrollbars=" + scrollbars;
Property += ",location=" + location;
Property += ",directories=" + directories;
Property += ",toolbar=" + toolbar;
Property += ",menubar=" + menubar;

eval(wName + "=window.open('" + wURL + "','" + wName + "','" + Property + "')");
}

// -->

