function win_open(source,window_name,w,ht,sc) {
	ws=screen.availWidth;
	hs=screen.availHeight;
	kl=(ws-w)/2;
	if (kl<0){kl=0;}
	kt=(hs-ht)/2;
	if (kt<0){kt=0;}		
	window_name+="_"+Math.round(Math.random()*1000);	
	var window_params = 'status=no,toolbar=no,scrollbars='+sc+',titlebar=yes,menubar=no,resizable=no,width='+w+',height='+ht+',left='+kl+',top='+kt+',directories=no,location=no';
	window.open(source, window_name, window_params);
}

function formSubmit(param){
	oForm = document.request;		
	aInput = document.getElementsByTagName('input');
	
	if(param == 'all'){		
		for(i=0; i < aInput.length ;i++){
			if(aInput[i].name == 'hotel[]' ){
				aInput[i].checked = true;
			}
		}
	}
	
	for(i=0; i < aInput.length ;i++){
		if(aInput[i].name == 'hotel[]' ){			
			if(aInput[i].checked){
				oForm.submit();
				return false;				
			}
		}
	}	
	alert('Не выбрано ни одного отеля.');
	return false;
}
