// Function new window

function newWindow(URL) {
   aWindow = window.open(URL,"thewindow",
	"width=675,height=500,location=0,menubar=0,resize=1,toolbar=1,scrollbars=1,status=1");
   aWindow.location=URL;
   aWindow.focus();
}

function newsWindow(URL) {
   aWindow = window.open(URL,"thewindow",
	"width=665,height=500,location=0,menubar=0,resize=1,toolbar=0,scrollbars=1,status=1");
   aWindow.location=URL;
   aWindow.focus();
}

function searchWindow(URL) {
   aWindow = window.open(URL,"thewindow",
	"width=720,height=480,location=0,menubar=1,resize=1,toolbar=1,scrollbars=1,status=1");
   aWindow.location=URL;
   aWindow.focus();
}
