	// RollOver Buttons
	
<!--
	
	if (document.images) {            // Active Images
	
				
				//Primary Nav
				
	            //img1on = new Image();      
	            //img1on.src = "images/nav_cover_02.jpg";
	
	            //img1off = new Image(); 
	            //img1off.src = "images/nav_cover_01.jpg";   
				
				//---
	
				
				     }
	
	// Function to 'activate' images.
	function imgOn(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "on.src");
	        }
	}
	
	// Function to 'deactivate' images.
	function imgOff(imgName) {
	        if (document.images) {
	            document[imgName].src = eval(imgName + "off.src");
	        }
	}
	
	// -->
	
	// Mail To A Friend

	function mailpage()
	{
	mail_str = "mailto:?subject=Check out the " + document.title;
	mail_str += "&body=I thought you might be interested in the " + document.title;
	mail_str += ". You can view it at, " + location.href; 
	location.href = mail_str;
	}
	
	<!-- Begin
	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=0,width=460,height=400,left = 290,top = 262');");
	}
	// End -->

