function showHide( id )
{
   var show = 'show' + id;	
   var hide = 'hide' + id;
   var showdiv = document.getElementById( show );
   var hidediv = document.getElementById( hide );
   hidediv.style.display = 'none';
   showdiv.style.display = 'block';
}

function showIt( id )
{
   var show = 'show' + id;	
   var showdiv = document.getElementById( show );
   if( showdiv.style.display == 'block' )
   {
   	showdiv.style.display = 'none';
   }
   else
   {
     	showdiv.style.display = 'block';
   }
}

function hideIt( id )
{	
   var hide = 'show' + id;
   var hidediv = document.getElementById( hide );
   hidediv.style.display = 'none';
}

function sendIt()
{
	var newval;
	newval = jQuery('#zipfinder_zipcode').val();
	jQuery('#zipcode').val(newval);
	window.location = '/searches/searchSmart/' + newval;
}

function markAsHuman() {
	document.getElementById("imahuman").value = "1";
}