<!-- // Hide from older browsers

function IEHoverPseudo() {

	var navItems = document.getElementById("usermenu").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}
}
window.onload = IEHoverPseudo;


function eout(miscn,miscd,name)
    {
       document.write('<a href="mai');
       document.write('lto');
       document.write(':');
       document.write(miscn);
       document.write('@');
       document.write(miscd);
       document.write('">');
       document.write(name);
       document.write('<\/a>');
    }

// -->
 