function new_window() 
{
// Name the Window, so the remote can target it
self.name = "Parent_Window"; 

var new_window = "scrollbars,resizable,width=300,height=450,left=430,top=25";
OpenWindow = window.open("remote.htm", "remote", new_window);
}

function NewWindow(mypage, myname) 
{
var new_window1 = "scrollbars,resizable,width=750,height=200,left=15,top=325";
OpenWindow = window.open(mypage, myname, new_window1);
}

