//Force Tables in  Netscape to go all the way to the right margin
//Pass 'IE' as the second argument to the function if you want to make
//sure IE doesn't put anything in(especially  &nbsp; where a table cell
//is supposed to be only 1px high
		 function makeIt (num,exception) {
 	 		var browser = navigator.appName;
			 var version = parseInt(navigator.appVersion);
			 var width;
			 if (browser == "Netscape" && version >= '4') {
			 	width = window.innerWidth;
			 	if (num == 'total') {
			 		//make sure path to spacer.gif is correct
		 			space = "<img src='../images/spacer.gif' width='" + width +"' height='1'  border='0'  alt='  ' />"; 
		 			return space;
		 		} else if (width <= num) {  
		 			space = '&nbsp;';
		 		} else {
		 			
		 			width = width - num; 
		 			//make sure path to spacer.gif is correct
		 			space = "<img src='../images/spacer.gif' width='" + width +"' height='1'  border='0'  alt='  ' />"; 
		 		}
			 } else if (browser != "Netscape" && num == 'total') {
		 		space = '';
			 } else if (browser !="Netscape" && exception == "IE") {
				space = '';		 	
			 } else {
			 	space = '&nbsp;';
			 }
			 return space;
		}
		 //Define functions for image rollovers
		function Navon(imgName) {
   			if (document.images) {
     				 imgOn=eval(imgName + "on.src");
     		 		document[imgName].src= imgOn;
    			}
 		}

		function Navoff(imgName) {
   			if (document.images) {
    				  imgOff=eval(imgName + "off.src");
     				  document[imgName].src= imgOff;
   			 }
 		}
 		//Force NN to reload on re-size
 		function fixNN () {
 			var ua = navigator.appName;
			var uanum = parseFloat(navigator.appVersion);
			if (ua == "Netscape" && uanum >= '4.08') {
				location.reload();
			} else {
				return;
			}
		}
	
		//Load Evol Logo Rollover
	if (document.images) {
		home1on = new Image(179,31);
		home1on.src = "../images/elogo_licensed.gif";
		home1off = new Image(179,31);
		home1off.src = "../images/elogo_licenced_off.gif";
	}