	var newWindow;
	newWindow = window.open (
		newPage,"Player","toolbar=no, menubar=no, location=no, scrollbars=no, width=360, height=160");
}
function playerWindow(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"Player","toolbar=no, menubar=no, location=no, scrollbars=no, width=385, height=50");
}
function docWindow(newPage) {
	var pdfWindow;
	pdfWindow = window.open (
		newPage,"PDF","toolbar=no, location=no, menubar=no, location=no, scrollbars=yes, resizable=yes width=710, height=440");
}
function open_800_600(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"800_600","toolbar=yes, menubar=yes, location=yes, scrollbars=yes, width=800, height=600");
}
function open_1024_768(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"1024_768","toolbar=yes, menubar=yes, location=yes, scrollbars=yes, width=1024, height=768");
}
function open_1280_1024(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"1280_1024","toolbar=yes, menubar=yes, location=yes, scrollbars=yes, width=1280, height=1024");
}
function open_1280_768(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"1280_768","toolbar=yes, menubar=yes, location=yes, scrollbars=yes, width=1280, height=768");
}
function open_1440_900(newPage) {
	var newWindow;
	newWindow = window.open (
		newPage,"1440_900","toolbar=yes, menubar=yes, location=yes, scrollbars=yes, width=1440, height=900");
}
function doSomething(x) {
	if (x=="nav_contact") c="current_contact"; 
	else if (x=="nav_home") c="current_home";
	else c="current";
	var y=document.getElementById('nav').className;
	if (y)	document.getElementById(y).className="nav";
	document.getElementById(x).className=c;
	document.getElementById('nav').className=x;
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");     
	for (var i=0; i<sfEls.length; i++) {         
		sfEls[i].onmouseover=function() {             
			this.className+=" sfhover";         
		}         
		sfEls[i].onmouseout=function() {             
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");         
		}     
	} 
} 
if (window.attachEvent) window.attachEvent("onload", sfHover);
