<script language="javascript">
function switchSearchFrm1(){

var tourObj = document.getElementById('searchTourFrm1');
var hotelObj = document.getElementById('searchHotelFrm1');
if(tourObj.style.display==''){
	tourObj.style.display='none';
	hotelObj.style.display='';
}else{
	tourObj.style.display='';
	hotelObj.style.display='none';
}
}
// showTag(1);
</script>