function launch(Page, Title, Width, Height, Location, Menubar, Resizable, Scrollbars, Status, Titlebar, Toolbar, Top, Left)
{
	if (Page != "")
	{
		window.open (Page, Title, "width=" + Width + ", height=" + Height + ", location=" + Location + ", menubar=" + Menubar + ", resizable=" + Resizable + ", scrollbars=" + Scrollbars + ", status=" + Status + ", titlebar=" + Titlebar + ", toolbar=" + Toolbar + ", top =" + Top + ", left=" + Left);
	}
}