self.name='omegasite';

function numerodeprestacoes() {
	if(document.formsimulafinanciamento.ano.value!='') {
		iframe_prestacoes.location='financiamentos_meses.php?ano=' + document.formsimulafinanciamento.ano.value;
	} else {
		iframe_prestacoes.location='financiamentos0.html';
		document.formsimulafinanciamento.prazo.value="";
	}
}


function simulafinanciamento() {
	d=document.formsimulafinanciamento;
	if(d.ano.value=='') {
		alert('Selecione o ANO do veículo!');
		return false;
	}
	if(d.valor.value=='') {
		alert('Digite o VALOR DO FINANCIAMENTO!');
		return false;
	}
	if(d.prazo.value=='') {
		alert('Selecione o NÚMERO DE PRESTAÇÕES');
		return false;
	}
}


function fotoview(posicao) {
	for(i=1;i<6;i++) {
		document.getElementById('foto_'+i).style.display='none';
	}
	document.getElementById('foto_'+posicao).style.display='inline';
}


function buscaveiculosmarca_formtop() {
	top.location.href="veiculos.php?marca="+this.tmarca.value;
}