sfHover = function()
{
	if(document.getElementById("dropdown"))
	{
		var sfEls = document.getElementById("dropdown").getElementsByTagName("LI");
	}
	else if(document.getElementById("menu"))
	{
		var sfEls = document.getElementById("menu").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);

function e(aa, bb, s, l)
{
	var s = (typeof(s) != 'undefined' && s != null && s != '') ? '?subject=' + s : '';
	var l = (l == null) ? aa+'@'+bb : l;
	var cc = "ma";
	var dd = "ilto:";
	document.write('<a href="' + cc + dd + aa + '@' + bb + s + '">'+l+'</a>');
}
function showpopup(name)
{
	document.getElementById(name).style.display = 'block';
}
function hidepopup(name)
{
	document.getElementById(name).style.display = 'none';
}