function dosearch()	{		var form = document.forms[0] ;		if(form.SiteQuery.value =="")		{			form.SiteQuery.focus();			return(alert("Please provide a search value."));					}		powerSearchInit = 'Y';	//location.href = "/tc.nsf/search?searchview&query="  + form.SiteQuery.value ;	location.href = "/catalog.nsf/Results?SearchDomain&Query="  + form.SiteQuery.value + "&Start=1&Count=20&searchfuzzy=true";	}function ProcessEnter(e)	{		var key;		var form = document.forms[0] ;   			var url;		if(window.event) {			// for IE, e.keyCode or window.event.keyCode can be used			key = e.keyCode; 			//alert('window.event key? ' + key) ; 		}		else if(e.which) {			// netscape			key = e.which; 			//alert('e.which key? ' + key) ; 			}		else {			// no event, so pass through			//alert('nein!');			return false;		}	if (key == 13)		{			if ( form.SiteQuery.value != "" ) 				{					//var newpath = "/tc.nsf/search?searchview&query="  + form.SiteQuery.value ; 					var newpath = "/catalog.nsf/Results?SearchDomain&Query="  + form.SiteQuery.value + "&start=1&count=20&searchfuzzy=true"; 										//alert('newpath is: ' + newpath ) ; 					powerSearchInit = 'Y';					window.location.href=newpath ;				}		}		}	 var images = new Array();images[0] = "/web/images/SuccessSmallBounty.jpg"; images[1] = "/web/images/SuccessSmallElis.jpg";images[2] = "/web/images/SuccessSmallBinaca.jpg";images[3] = "/web/images/SuccessSmallSharpie.jpg";images[4] = "/web/images/SuccessSmallPlaytex.jpg";images[5] = "/web/images/SuccessSmallMicrosoft.jpg";var my_link = new Array();my_link[0] = "Success_Stories-Bounty_To_Go";my_link[1] = "Success_Stories-Elis_Cheesecake";my_link[2] = "Success_Stories-Binaca_Fast_blast";my_link[3] = "Success_Stories-Sharpie";my_link[4] = "Success_Stories-Playtex";my_link[5] = "Success_Stories-Microsoft";function ShowImg() {var number = images.length;var increment = Math.floor(Math.random() * number);//var strTemp ='<img src="' + images[increment] + '" onClick="parent.location=\'' + my_link[increment] + '\'">';var strTemp ='<a href="'+my_link[increment]+'" style="padding:0"><img src="' + images[increment] + '" style="border:0px"></a>';document.write(strTemp);}var rotate = 5000; var count = 0;function RotateImg(myImage){ myImage.src=images[count]; count++; if(count==images.length){count = 0;} setTimeout("RotateImg(myImage)",rotate);} 