function newwin2()
{
sub = window.open("movie.htm","window2","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=418,height=480");
x = (screen.width  - 418) / 2;
y = (screen.height - 480) / 2;
sub.moveTo(x,y);
}
