// Open new window

function openWin(URL) {
	aWindow=window.open(URL,"menu"," toolbar=no,width=800,height=500,status=no,scrollbars=yes,resize=yes,menubar=yes");
	}

// Check browser type to launch correct style sheet

if ((navigator.appName == 'Microsoft Internet Explorer')) 
document.write('<link rel="stylesheet" type="text/css" href="evsIE.css">');
else document.write('<link rel="stylesheet" type="text/css" href="evs.css">');

