//<![CDATA[
ddHover = function() {
	var ddEls = document.getElementById("ddMenu").getElementsByTagName("LI");
	for (var i=0; i<ddEls.length; i++) {
		ddEls[i].onmouseover=function() {
			this.className+=" ddhover";
		}
		ddEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ddhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ddHover);

function openNewWin(theURL,winName,features) {
	if (features == '') {
		window.open(theURL,winName,'width=555,height=400,left=100,top=50,scrollbars=yes,location=no,resizable=yes,toolbar=no');
	} else {
		window.open(theURL,winName,','+features);
	}
	return false;
}
function openEmailWindow(theURL,windowName) {
  window.open(theURL,windowName,'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,width=555,height=395,left=100,top=50');
}
//]]>