var obj1,obj2,obj3;
/*
var timerID2 = setTimeout("changeExpert2()",6000);
function changeExpert2(){
	clearTimeout (timerID2);

	obj2 = document.getElementById("newban_4");
	obj3 = document.getElementById("newban_8");

	if ( obj2 != null && obj3 != null ){
			if ( obj2.style.display == "block" ){
				obj2.style.display = "none";
				obj3.style.display = "block";
			}
			else{
					obj3.style.display = "none";
					obj2.style.display = "block";
			}
	}
	timerID2 = setTimeout("changeExpert2()",6000);
}
*/


var idclass = new Array();
var i;
function checkLux(comp,luxi,alrt){

	if ( idclass[comp.value] > 2){
		luxi.value = '1';
		if (alrt == 1)
			alert("Вы выбрали круизную компанию класса люкс!");
	}
	else{// проверим может класс выбрали
		i = comp.value;
		i = i.split("class");
		if (i.length>1 && i[1] > 2 ){
			luxi.value = '1';
			if (alrt == 1)
				alert("Вы выбрали круизные компании класса люкс!");
		}
	}
}
