<!--
var temp="", lhs="", rhs="";
var type="", val="";
function makeMail(lhs,rhs)
{
	temp ="";
	temp +=lhs;
	temp +="@";
	temp +=rhs;
}
// runIt : This function creates
// the various mail statements for
// text, image, map, class
// type : refer to previous line
// value : if extra params are needed
function runIt(type, val)
{
	makeMail(lhs,rhs);
	var content ="";
	if (!(type == "map"))
	{
		content +="<a href=\"mailto:";
		content +=temp;
		if (type == "class")
		{
			content +="\" class=\"";
			content +=val;
		}
		content +="\">";
		if (type == "image")
		{
			content +=val;
		} else if (type == "text" && val != null)
		{
			content +=val;
		} else {
			content +=temp;
		}
		content +="</a>";
	} else {
		content +="<area shape=\"rect\" alt=\"";
		content +=temp;
		content +="\" coords=\"";
		content +=val;
		content +="\" href=\"mailto:";
		content +=temp;
		content +="\">";
	}
	document.write(content);
	return;
}

// Dropdown menu hover script for IE

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);

// Open Window events

function openWindow(url){
	popupWin = window.open(url, 'openWin', "width=500, height=400, scrollbars=yes");
}

-->