// Function to open new browser window
function openWin(URL){
aWindow = window.open(URL,'thewindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=760,height=510');
	if(window.focus)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('aWindow.focus();',250);
	}
}
