// JavaScript Document
function entering(){
		document.getElementById('txt_key').value='';
		document.getElementById('txt_key').focus();
	}
	function focusing(){
	
		if(document.getElementById('txt_key').value.length==0){
			document.getElementById('txt_key').value="Let's See What We Have Here...";
		}
		
	}
function formvalid()
{
	var searchword=document.getElementById('txt_key').value;
	if(searchword==''){
		document.getElementById('txt_key').value="Need Search Word";
		return false;
	}else if(searchword=="Need Search Word"){
		document.getElementById('txt_key').value="Need Search Word";
		return false;
	}else if(searchword=="Let's See What We Have Here..."){
		document.getElementById('txt_key').value="Need Search Word";
		return false;
	}else{
   		 return true;
	}
}