function newWin2(loc, name)
{

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

width = 0.7*W;
height = 0.75*H;
x = 0.13*W;
y = 0.1*H;

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);

}

