// JavaScript Document <!-- Begin            excerpt = new Image();            excerpt.src = "images/keepsake/navigation/home_on.gif";            about = new Image();            about.src = "images/keepsake/navigation/about_on.gif";            giveaways = new Image();            giveaways.src = "images/keepsake/navigation/giveaways_on.gif";            reviews = new Image();            reviews.src = "images/keepsake/navigation/reviews_on.gif";            ukversion = new Image();            ukversion.src = "images/keepsake/navigation/ukversion_on.gif";                                // End -->	<!-- Begin		enter_site = new Image();		enter_site.src = "images/enter_site_on.png";	// End -->		function popupWindow (url, windowName, width, height) {	var siteWindow = null		if (!siteWindow || siteWindow.closed) {			this.name = 'main';			siteWindow = window.open(url,windowName,'toolbar=no,width='+width+',height='+height+',status=no,scrollbars=no,resizable,menubar=no,left=20,top=20')		}		siteWindow.focus();	}		<!--- Begin FAQ Div Hiding --->	function toggleLayer(whichLayer){if (document.getElementById){// this is the way the standards workvar style2 = document.getElementById(whichLayer).style;style2.display = style2.display? "":"block";}else if (document.all){// this is the way old msie versions workvar style2 = document.all[whichLayer].style;style2.display = style2.display? "":"block";}else if (document.layers){// this is the way nn4 worksvar style2 = document.layers[whichLayer].style;style2.display = style2.display? "":"block";}}