function searchProperty(txtCodEmol)
{
	var code = document.getElementById(txtCodEmol).value;
	var error = document.getElementById('divError');

	if(code == '' || isNaN(code))
	{
		error.innerHTML = "C&oacute;digo inv&aacute;lido";
	}
	else
	{
		document.location = "/index.php/propiedad/detalle?idProducto="+code;
	}	
}	

