var wHandle;
var temp;
// open normal window
function nWindow(URL, name)
{
 wHandle=window.open(URL, name);
 wHandle.focus();
}
// open special window
// URL, windows name (target="name") x/y-position, size, scrollbars (0/1), fixed size (0/1)
function sWindow(URL, name, x, y, width, height, scroll, fixed)
{
 temp = '"screenX='+x+',screenY='+y+',width='+width+',height='+height;
 if (scroll) temp=temp+',scrollbars=yes';
 if (fixed)  temp=temp+',resizable=yes"';

 wHandle=window.open(URL,name,temp);
 wHandle.focus();
}

/*
function sWindow(URL, name, x, y, width, height, scroll, fixed)
{
 temp = "screenX="+x+",screenY="+y+",width="+width+",height="+height;
 if (scroll) temp=temp+",scrollbars=yes";
 if (fixed)  temp=temp+",resizable=yes";

 wHandle=window.open(URL,name,temp);
 wHandle.focus();
}
*/

