function cautareSimpla(rootpath) {
	var form = document.forms["cautare"];
	if (!form.tc.value.length) {
		alert("Va rugam introduceti textul de cautare!");
		form.tc.focus();
		return false;
	}
	else {
		if (form.domeniu[0].checked) {
			form.action = rootpath + '/anunturi/';
		}
		else{
			form.action = rootpath + '/catalog-firme/';
		}
		return true;
	}
	
}