function newwin1()
{
sub = window.open("index2.html","window1","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=700,height=500");
x = (screen.width  - 700) / 2;
y = (screen.height - 550) / 2;
sub.moveTo(x,y);
}
