function popUp(URL) {
		window.open(URL,'','toolbar=no, width=550, height=550, resizable=0, scrollbars=0'); void('');
	}
	
function popTough(URL) {
		window.open(URL,'','toolbar=no, width=300, height=300, resizable=0, scrollbars=0'); void('');
	}

function ZoomPopUp(theURL) {
if ((navigator.appVersion.indexOf("AOL") >0)) {
  MM_openBrWindow(theURL,"ZoomPopUp",'scrollbars=yes,resizable=yes,width=425,height=500,left=200,top=30');
} else if (navigator.appVersion.indexOf("Mac") != -1) {
  MM_openBrWindow(theURL,"ZoomPopUp",'scrollbars=yes,resizable=yes,width=475,height=500,left=200,top=30');
} else {

PopUp=window.open("","ZoomPopUp",'scrollbars=yes,resizable=yes,width=550,height=575,left=200,top=30');
	PopUp.document.write ("<HTML><HEAD><TITLE>");
	PopUp.document.write ("Image Zoom");
	PopUp.document.write ("</TITLE></HEAD>");
	PopUp.document.write ("<body border=0 TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#FFFFFF TEXT=#000000 LINK=#336699 VLINK=#336699>");
	PopUp.document.write ("<table cellpadding=0 cellspacing=0 bgcolor=#FFFFFF border=0 width=100%><tr><td background=/images/white.gif><img src=/images/white.gif width=1 height=5></td></tr></table>");
        PopUp.document.write ("<center><A HREF='JavaScript:this.close()'><font face=Verdana, Arial, Helvetica, sans-serif size=2 color=#000066><b>Close this window</b></font></a>&nbsp;&nbsp;<A HREF='JavaScript:this.close()'><img src=/images/closex.gif width=16 height=13 border=0 align=absmiddle></a></center><br>");
	PopUp.document.write ("<CENTER><hr width=375 size=1 color=#666666 noshade></CENTER>");
PopUp.document.write ("<table cellpadding=0 cellspacing=0 bgcolor=#FFFFFF border=0 width=100%><tr><td>");
	PopUp.document.write ("<P ALIGN=CENTER>");
	PopUp.document.write ("<A HREF='JavaScript:this.close()'><IMG BORDER=0 HSPACE=0 VSPACE=0 SRC='");
	PopUp.document.write (theURL);
	PopUp.document.write ("'></a>");
	PopUp.document.write ("</P>");
	PopUp.document.write ("</td></tr><tr><td bgcolor=#ffffff class=tan>");
	PopUp.document.write ("<CENTER><hr width=375 size=1 color=#666666 noshade></CENTER><P ALIGN=CENTER>");
	PopUp.document.write ("<A HREF='JavaScript:this.close()'><font face=Verdana, Arial, Helvetica, sans-serif size=2 color=#000066><b>Close this window</b></font></a>&nbsp;&nbsp;<A HREF='JavaScript:this.close()'><img src=/images/closex.gif width=16 height=13 border=0 align=absmiddle></a>");
	PopUp.document.write ("</td></tr></table>");
        PopUp.document.write ("</BODY></HTML>");

	}
}


function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


/* MAKE MENUS WORK IN 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);

startList = function() {
    if (document.all&&document.getElementById) {
        navRoot = document.getElementById("nav");
        for (i=0; i<navRoot.childNodes.length; i++) {
            node = navRoot.childNodes[i];
            if (node.nodeName=="LI") {
                node.onmouseover=function() {
                    this.className+=" over";
                }
                node.onmouseout=function() {
                    this.className=this.className.replace(" over", "");
                }
            }
        }
    }
}

window.onload=startList;