//open an variable window
function OpenWindow(url,WindowName,width,height) 
{
//set vars
//Netscape position
var screenX = 75;
var screenY = 80;
//explorer position
var top = 5;
var left = 5;

var menubar = 0;
var scrollbars = 'no';
var status = 0;
var toolbar = 0;
var resizable = 0;

var features =
    "width="        + width +
    ",height="      + height +
    ",screenX="     + screenX +
    ",screenY="     + screenY +
    ",top="         + top +
    ",left="        + left +
    ",menubar="     + menubar +
    ",scrollbars="  + scrollbars +
    ",status="      + status +
    ",toolbar="     + toolbar +
    ",resizable="   + resizable;


window.open (url, WindowName, features);
}  