function showSection2(Name,Name2) 
	{
       var stour  = window.document.getElementById('stour');
		var istour = window.document.getElementById('istour');
		stour.style.display='none';
        istour.className='search_not_selected_section2';
		 
        var shotel  = window.document.getElementById('shotel');
		var ishotel = window.document.getElementById('ishotel');
		shotel.style.display='none';
       ishotel.className='search_not_selected_section2';
		 
		var elem = document.getElementById(Name);
		elem.style.display = '';
		var ielem = document.getElementById(Name2);
        ielem.className = 'search_selected_section2';
				
		return false;
	}

