<!--
   function getFlashMovie(movieName) {
      var isIE = navigator.appName.indexOf("Microsoft") != -1;
      return (isIE) ? window[movieName] : document[movieName];
   }

   getPageURL = function() {return window.location.href;}   

   setProperty = function(property,elt,value) {document.getElementById(elt).style[property] = value;}

   gotoTop = function() {window.scrollTo(0,0);}

   function gotoUrl(url) {
      window.location.href = url;
      return true;
   }

   function addOnloadEvent(fnc){
      if ( typeof window.addEventListener != "undefined" ) {window.addEventListener( "load", fnc, false );}
      else if ( typeof window.attachEvent != "undefined" ) {window.attachEvent( "onload", fnc );}
      else {
         if ( window.onload != null ) {
            var oldOnload = window.onload;
            window.onload = function ( e ) {
               oldOnload( e );
               window[fnc]();
            };
         } else {window.onload = fnc;}
      }
   }

   sfHover = function() {
      try {
      	var sfEls = document.getElementById("topNav").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"), "");}
     	   }
      }
      catch (err) {}

      try {
      	var sfEls = document.getElementById("topLogin").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"), "");}
     	   }
      }
      catch (err) {}
   }

   if (window.attachEvent) window.attachEvent("onload", sfHover);

-->
