window.onload=function()
{	
	var deftxt='Search by Keyword or Item #';
	var def=document.getElementById('hdrSearchform');
	def.onfocus = function()
	{this.style.color='#222';this.value=(this.value==deftxt)?'':this.value;}
	def.onblur= function()
	{if(this.value=='')	{this.value=deftxt;this.style.color='#666';}
	else this.value;}
}