/* if ($$("#globalNav form fieldset input")[0].value == "") 
{
	$$("##globalNav form fieldset input")[0].value = 'Search the Web';
} else {
alert("entered Here");
$$("##globalNav form fieldset input")[0].value = 'Search';
} */
/* window.addEvent('domready', function(){
if ($$("#globalNav form fieldset input")[0].value == "") 
{
	$$("##globalNav form fieldset input")[0].value = 'Search the Web';
}

	 $$("#globalNav form fieldset input.searchQuery").invoke('observe', 'focus', 
		function() {
		if ($$("#globalNav form fieldset input")[0].value == 'Search the Web') {
		$$("#globalNav form fieldset input")[0].value = '';
		    }	
		}
		);
		$$("#globalNav form fieldset input.searchQuery").invoke('observe', 'blur', 
			function() {
			 if ($$("#globalNav form fieldset input")[0].value == '') {
				$$("#globalNav form fieldset input")[0].value = 'Search the Web';
			}	
		  }
		); 

});*/

function SearchTab(formName,inputName,action)
	{
	   eval('var sFormObj = document.'+ formName +'.'+ inputName);		
		if(action=="clear")
		{
		if(sFormObj.value=="SEARCH THE WEB")
		sFormObj.value='';		
		}
		
		if(action=="fill")
		{
		 if(sFormObj.value=="")
		 sFormObj.value="SEARCH THE WEB";		
		}	
	}

function SearchValidData(formName,inputName)
	{
	eval('var sFormObj = document.'+ formName +'.'+ inputName);	
	if(sFormObj.value=="SEARCH THE WEB" || sFormObj.value=="")
	{return false;} else {return true;}
	}