// 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=no,copyhistory=no,scrollbars=yes,width=550,height=350,left=0,top=0');if(window.focus) {	// delay a bit here because IE4 encounters errors	// when trying to focus a recently opened window	setTimeout('aWindow.focus();',250);	}}