function ClickTextBox(){
		var value=document.getElementById('searchtext').value;
		if(value=='SEARCH'){
			document.getElementById('searchtext').value='';
		}
	}
function OutsideLink(URL)	
	{
   		var writeURL = URL;
   		var thisSite="www.TheGraceStudy.com";
	   	if (URL.length > 60)
	   	{
		   writeURL = URL.substr(0, 60) + "...";
	   	}
	   	if (confirm("\nThank you for visiting " + thisSite + ".\n\nBy clicking 'OK' you will be taken to: \n\n" + writeURL +"\n\nA Web site to which our Privacy Policy \ndoes not apply.\n\nYou are solely responsible for your \ninteractions with such Web sites.\n\n"))
	   	{
		   window.open(URL,"_blank");
	   	}
	}	