function buscar() {
		var frm = document.Form;
		var strError = '';
		var objCheck = new check("Form");
		
		objCheck.checkString("txtNombre", "nombre", 1, 100, true);
		objCheck.checkString("txtDireccion", "dirección", 1, 100, true);
				
		strError = objCheck.toString();
		
		if (strError == "") {
			frm.submit();
		} else {
			alert (strError);
		}

}


function verFicha(Id) {
		var frm = document.Form;
		frm.action = "ficha_establecimiento.php?id=" + Id;
		frm.submit();
}


