// JavaScript Document
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);


var browserName=navigator.appName;
var version=navigator.appVersion;

if (browserName=="Microsoft Internet Explorer")
{
	if (window.XMLHttpRequest) {
	document.write("<link rel=\"stylesheet\" href=\"/cp-new-ie7.css\" TYPE=\"text");
	document.write("/css\">");
	}
}
else{

document.write("<link rel=\"stylesheet\" href=\"/cp-new-ff.css\" TYPE=\"text");
document.write("/css\">");

}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 347,top = 234');");
}
