function set_typof(typofValue, formID) {
	var form = $(formID);
	with (form) {
		typof.value=typofValue;
	}
	$('typofTd0').setStyle({backgroundColor:'#CCD1D1'});
	$('typofTd1').setStyle({backgroundColor:'#CCD1D1'});
	$('typofTd2').setStyle({backgroundColor:'#CCD1D1'});
	
	$('typofTd'+typofValue).setStyle({backgroundColor:'#D90000'});
}

function searchFromInit() {
	with ($('estateSearchForm')) {
		var typofValue = typof.value;
	}
	
	set_typof(typofValue, 'estateSearchForm');
}
