function showvetka(id)
		{
		if (document.getElementById('ul'+id).style.display == 'none')	document.getElementById('ul'+id).style.display = 'list-item';
			else document.getElementById('ul'+id).style.display = 'none';
		}
		
function create_popup_gallery(id,w,h)
	{
	window.open('','pop_up_gallery_'+id,'scrollbars=no,resizable=no,width='+w+',height='+h+',status=no');
	}
	
function open_hotlist(n)
	{
	for (i = 1; i<= 5; i++)
		{
		if (i == n) 
			{
			document.getElementById('hl_'+i).style.display = 'block';
			
			document.getElementById('ic_'+i).className = 'im_city ic_hover';
			document.getElementById('icdiv_'+i).className = 'div_hover';
			}
		else 
			{
			document.getElementById('hl_'+i).style.display = 'none';
			
			document.getElementById('ic_'+i).className = 'im_city ic_normal';
			document.getElementById('icdiv_'+i).className = 'div_normal';
			}
		}
	
	check_hotels_height();
	
	}
	
function check_poisk()
	{
	if (document.getElementById('inp_poisk').value == 'поиск')
		{
		document.getElementById('inp_poisk').value = '';
		}
	}
	
	
function check_hotels_height()
	{
	
	for (i = 1; i<= 5; i++)
		{
		h = document.getElementById('hl_'+i).offsetHeight;
		
		if (h > 280)  document.getElementById('htl_'+i+'_'+5).style.display = 'none';
		}
	}
