<!-- Begin
var PSciCj = "!@#$%^*()+=-[]\\\';,./{}|\":<>?";

function PW_Clear(theText)
	{

		if (theText.value == theText.defaultValue)
		{
			theText.value = ""
		}
	}
	
	
function checkSearchBox(KeyForm)
	{	
		document.KeyForm.keywordTerm.value=document.KeyForm.keywordTerm.value.toLowerCase();
		
		for (var PSci = 0; PSci < document.KeyForm.keywordTerm.value.length; PSci++) {
		  	if (PSciCj.indexOf(document.KeyForm.keywordTerm.value.charAt(PSci)) != -1) {
		  	alert ("Your product search is using special characters. \nThese are not allowed.\n Please remove them and try again.");
		  	document.KeyForm.keywordTerm.focus();
		  	return false;
		  	}
		}
						
		if (KeyForm.keywordTerm.value == "")
		{
			alert("Please enter a \"search Term\" " + '\n' + "Please try again");
			KeyForm.keywordTerm.focus();
			return (false);
		}	
		
		if (KeyForm.keywordTerm.value == "Keyword Search")
		{
			alert("Please enter a \"search Term\" " + '\n' + "Please try again");
			KeyForm.keywordTerm.value = ""
			KeyForm.keywordTerm.focus();
			return (false);
		}	
		
		if (KeyForm.keywordTerm.value == "keyword search")
		{
			alert("Please enter a \"search Term\" " + '\n' + "Please try again");
			KeyForm.keywordTerm.value = ""
			KeyForm.keywordTerm.focus();
			return (false);
		}		
	}
//  End -->