function disable() {

	tabla=getObj("ocultar");
	tabla.style.visibility="hidden";
	tabla.style.position="absolute";

	tabla=getObj("desocultar");
	tabla.style.height="100%";
	tabla.style.visibility="visible";
	tabla.style.position="relative";

}

function Check_Buscar(form) {

	/*
	if (form.tipo.value=="") {
		alert("Seleccione TIPO DE VEHÍCULO para efectuar una búsqueda");
		return false;
	}
	*/

	if (form.aniodesde.value!="" && form.aniohasta.value!="") {
		if (form.aniohasta.value<form.aniodesde.value) {
			alert("El AÑO 'final' no puede ser menor al 'inicial'");
			return false;
		}
	}

	form.action=DIR+"/vehiculos/resultado.php";
	form.target="_parent";
	return true;

}

function getForm_Parent(formname) {

	if (document.getElementById) {
		return window.parent.document.getElementById(formname);
	} else if (document.all) {
		return window.opener.document.all[formname];
	} else {
		return window.opener.document.all[formname];
	}

}

