
function showAdvSearchForm(_id){

	//alert(_id.style.display);

	if (_id.style.display == 'inline' || _id.style.display == ''){
		_id.style.display = 'none';
		
	}else{
		_id.style.display = 'inline';
		_id.style.width="100%";
	}


		
	return false;	
}


function hiddenAdvSearchForm(_id){
//		alert('here: ' + _id.style.display);
		_id.style.display = 'none';
		return false;
}