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=1,width=635,height=530,left = 460,top = 381.5');");
}


/* 
Suckerfish Modified
2006-08-22 DRW
http://www.htmldog.com/articles/suckerfish/dropdowns/
This has been modified to handle more than one instance of the menu on a page.  Instead of grabbing by ID, it now grabs all ULs that
are tagged with the "suckerfish" class.
*/

sfHover = function() {
    
    var lists = document.getElementsByTagName("UL");
    for (var i = 0; i < lists.length; i++)
    {
        if (lists[i].className == "globalMenu nav selectedPage suckerfish")
        {
	        var sfEls = lists[i].getElementsByTagName("LI");
	        for (var j=0; j<sfEls.length; j++) {
		        sfEls[j].onmouseover=function() {
			        this.className+=" sfhover";
		        }
		        sfEls[j].onmouseout=function() {
			        this.className=this.className.replace(/ sfhover/gi, ""); //MSG 2008-8-20: Changed to correct issues of double adding sfhover class
		        }
	        }
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

