
// this is for advanced search
function toggleDisplay(objID,val)
	{
		var obj = document.getElementById(objID);
		
		
		//obj.style.display="inline";
		
		if(val)
		{
			;
			obj.style.display = (val==true)? "":"none";
		}else
		{
			obj.style.display = (obj.style.display=="")?"none":"";
		}
	}
	
	function toggleSection(WhichZone)
	{
		var body = document.getElementById(WhichZone);
		var arrow = document.getElementById(WhichZone+"arrow");
		if(body.style.display=='none')
		{
			body.style.display = 'block';
			arrow.src="/design/images/search-adv-srch-btn-up.gif";
		}else
		{
			body.style.display = 'none';
			arrow.src="/design/images/search-adv-srch-btn-dn.gif";
		}
	}
	
	
		
	// Clear on focus for fields
	function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}