//-----------------------------------------------------------------------------
// file: searchBox.js
// lib:
// desc: all things search box
// date: 2008/07/08
// rev auth: Rob Straughn <webmaster@omnisoft.net>
// copy: (c) Copyright 2008 OmniSoft.
//  auth: http://www.tshirthell.com/js/searchBox.js
//-----------------------------------------------------------------------------

<!-- Begin


function EraseSearch(obj)
//Erase contents
     {
    	obj.value = '';
}
    


function DoBlur(obj) 
//Mouseover
{
    	if(obj.value.length == 0){
    		obj.value = "Enter Keywords";
    	}
}
    
//-->    

//-----------------------------------------------------------------------------
// end of searchBox.js
//-----------------------------------------------------------------------------
   