//browse sniffer and loader of stylesheet & nav system
if (document.layers) {
	//Netscape 4
		document.write("<link rel='stylesheet' type='text/css' href='/filmlab_ns4.css'>");
	//Render the DHTML stylesheet
		document.write("<link rel='stylesheet' type='text/css' href='/filmlab_dhtml.css'>");
} else if(document.all) {
	//IE
	document.write("<link rel='stylesheet' type='text/css' href='/filmlab.css'>");
	//Render the DHTML stylesheet
		document.write("<link rel='stylesheet' type='text/css' href='/filmlab_dhtml.css'>");
} else if(document.getElementById) {
	//Netscape 6
	document.write("<link rel='stylesheet' type='text/css' href='/filmlab.css'>");
	//Render the DHTML stylesheet
		document.write("<link rel='stylesheet' type='text/css' href='/filmlab_dhtml.css'>");
} else {
	//Older than 4.0 browser
}

//Generic button rollover script
function buttonroll(state, whichnav) {
if (document.all) {
	if (state==0) eval(whichnav).src = "/images/nav/" + whichnav + ".gif";
	if (state==1) eval(whichnav).src = "/images/nav/" + whichnav + "_on.gif";
} else {
	if (state==0) document.getElementById(whichnav).src = "/images/nav/" + whichnav + ".gif";
	if (state==1) document.getElementById(whichnav).src = "/images/nav/" + whichnav + "_on.gif";
}
}

//LOCATIONS POP-OUT PRINT WINDOW
function popPrint(hotel) {
	window.open('/locations/locationsprintpage.asp?hotel='+hotel, 'filmlablocations', 'top=100, left=100, width=550, height=450, scrollbars=yes, location=no, address=no');
}
