//	----------------------------------------------------------------------------------------
//	ClearDefault : Search Box
//	----------------------------------------------------------------------------------------
function clearDefault(el) {

  if (el.defaultValue==el.value) 
  {
  	el.value = "";
  }

}
function resetSearch(e1, targetValue) {
	if(e1.value=="") 
	{
	  e1.value = targetValue;
	}
}




