function cauta_cazare()
{
	document.frmForm.action = "rezultat_cautare.php";
	document.frmForm.submit();
	
	//nu merge in IE:
	//if(document.frmForm.txtCauta.value != "")
	//{
		//alert ("aaa");
		//document.frmForm.submit();
	//}
	//else
	//{
		//document.frmForm.action = "index.php";
		//document.frmForm.submit();
		//return;
	//}
}


function aaa(evt)
{
	//alert ("aaa1");
	var charCode = (evt.which) ? evt.which : event.keyCode;
	//alert(charCode);

	if(charCode == 13)
	{
		cauta_cazare();
	}
	
}


function start()
{
	document.frmForm.txtCauta.focus();
}




function InchideFereastra(x)
{
	document.getElementById(x).style.display='none';
}



function View(i)
{
	document.frmPensiune.action = "pensiune.php";
	document.frmPensiune.hdnPensiuneID.value = i;
	document.frmPensiune.submit();
}



