//<script>
	//Code for image roll overs
	if (document.images) {

	 about_on =  new Image(153,19); about_on.src = "/graphics/about_on.gif";
	 guide_on =  new Image(121,19); guide_on.src = "/graphics/guide_on.gif";
	 news_on =  new Image(68,19); news_on.src = "/graphics/news_on.gif";
	 search_on =  new Image(81,19); search_on.src = "/graphics/search_on.gif";
	 contact_on =  new Image(96,19); contact_on.src = "/graphics/contact_on.gif";
	 
	 
	}

	/* Function that swaps images. */

	function di20(id, newSrc) {
	    var theImage = FWFindImage(document, id, 0);
	    if (theImage) {
	        theImage.src = newSrc;
	    }
	}

	/* Functions that track and set toggle group button states. */

	function FWFindImage(doc, name, j) {
	    var theImage = false;
	    if (doc.images) {
	        theImage = doc.images[name];
	    }
	    if (theImage) {
	        return theImage;
	    }
	    if (doc.layers) {
	        for (j = 0; j < doc.layers.length; j++) {
	            theImage = FWFindImage(doc.layers[j].document, name, 0);
	            if (theImage) {
	                return (theImage);
	            }
	        }
	    }
	    return (false);
	}
						
	function openWindow(name,url) {
		window.open(url, name, 'toolbar=yes,scrollbars=yes,resizable=no,width=720,height=412');
	}		
	
	
	function surfto(combo) {
		var myindex = combo.selectedIndex
		var location = combo.options[myindex].value
		if (location != "") {
			window.location.href = location;
		}
	}
	
	function surftotown(combo) {
		var myindex = combo.selectedIndex
		var location = combo.options[myindex].value
		if (location != "") {
			window.location.href = location;
		}
	}
	
	
	//-->
