function validateSimpleSearch(form){
	if(form.priceto.value.length > 0 && !isMoney(form.priceto)){
		alert("Introduceti un pret maxim corect!");
		form.priceto.focus();
		return false;
	}
	if ( form.priceto.value.length > 0  && form.valutaid.selectedIndex == 0){
		alert("Va rugam selectati moneda!");
		form.valutaid.focus();
		return false;
	}	
	form.roomsfrom.value = form.roomno.options[form.roomno.selectedIndex].value;	
	form.roomsto.value = form.roomno.options[form.roomno.selectedIndex].value;		
	if(form.roomno.options[form.roomno.selectedIndex].text.indexOf("+") > 0){
		form.roomsfrom.value = form.roomno.options[form.roomno.selectedIndex].text.substring(0, form.roomno.options[form.roomno.selectedIndex].text.length - 1)		
		form.roomsto.value = "";		
	}

	
	return true;
}

function toggleFields(form){
	truthval = (isbuilding[form.typeid.selectedIndex]) ? true : false;
	inactivecolor = truthval ? "#ffffff" : "#f0f0f0";

	form.roomno.disabled = !truthval;
	form.roomno.style.background = inactivecolor;

	form.roomstype.disabled = !truthval;
	form.roomstype.style.background = inactivecolor;
}

function cautareAvansata(form, rootrelpath){
	form.action = rootrelpath + "/offer/offerssearch.php";
	form.submit();
}