//Funtion to remove default text from search input field
// Put following into input tag: onfocus="remName(this, 'Search');" onblur="chkName(this, 'Search');"
	function remName(a, b){
	if(a.value==b){
	a.value='';
	}else if(a.value==''){
	a.value=b;
	}else{
	a.value=a.value;
	}
	}
	
	function chkName(a, b){
	if(a.value==''){
	a.value=b;
	}else{
	a.value=a.value;
	}
	}
