function Screen(loc, name)
{

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

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(0,0);

}

