function newwin2()
{
sub = window.open("form.html","window1","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=686,height=370");
x = (screen.width  - 686) / 2;
y = (screen.height - 370) / 2;
sub.moveTo(x,y);
}

