// JavaScript Document

function mostrarform(divid,tipoconsulta) {

	varDiv = document.getElementById(divid);
	varDiv.style.display = "block";
	varTipoConsulta = tipoconsulta;
	document.getElementById('tipoconsulta').value = varTipoConsulta;
}

function ocultarform(divid) {
	varDiv = document.getElementById(divid);
	varDiv.style.display = "none";
	varImg = document.getElementById('imgmostrar'+divid);
	varImg.style.display = "inline";
	varImg2 = document.getElementById('imgocultar'+divid);
	varImg2.style.display = "none";
}
function mostrarGlobo() {
	document.getElementById('iframeGlobo').style.visibility = 'visible';
}
function ocultarGlobo() {
	document.getElementById('iframeGlobo').style.visibility = 'hidden';
}
function sombrearCampo(campo) {
	varCampo = document.getElementById(campo);
	varCampo.style.backgroundColor='#FFFFCC';
}
function nosombrearCampo(campo) {
	varCampo = document.getElementById(campo);
	varCampo.style.backgroundColor='#FFFFFF';
}

function mostrarLeyendaHome() {
	var Leyenda = document.getElementById('boton-home');
	Leyenda.style.visibility='visible';
	}
	
function ocultarLeyendaHome() {
	var Leyenda = document.getElementById('boton-home');
	Leyenda.style.visibility='hidden';
	}	

function pedirMarcaoModelo() {
	var SelectObj = document.getElementById('metodo');
	var SelectedIndex = SelectObj.selectedIndex;
	var SelectedTxt = SelectObj.options[SelectedIndex].text;
	var Key2Txt = document.getElementById('key2').value
	if (Key2Txt == ''){
	alert('Debe ingresar un criterio de búsqueda');
	var error = 'true'
	}
	if (error != 'true') {
		if (SelectedTxt == 'Marca' | SelectedTxt == 'Modelo') {
			document.makemodel.submit();
			}
		else {
		alert('Por favor seleccione marca o modelo');
		}
	}
}

