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=807,height=446');
	if(window.focus)
	{
		//delay a bit before bringing the window to focus
 		setTimeout('aWindow.focus();',250);
	}
}