function newWin3(loc, name, width, height, x, y)
{

W = screen.availWidth;
H = screen.availHeight;

w = width*W;
h = height*H;
X = x*W;
Y = y*H;

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

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

Window.moveTo(X,Y);

}

