var d = 0;

function newWin(loc, name, width, height, x, y)
{
d = window.pageYOffset;

settings=
"toolbar=no,location=no,directories=no,status=no,"+
"menubar=no,scrollbars=yes,resizable=yes,"+
"width="+width+",height="+height;

Window = window.open(loc,name,settings);

Window.moveTo(x,y);

}

