// JavaScript Document
function fnValida(tipo){
	var f = document.index;
	if (document.getElementById('tipo') != null)
	   document.getElementById('tipo').value = tipo;
	if (f.est_cli.value=="0"){
		alert('Por favor, selecione o seu estado.');
		f.est_cli.focus();
	}
	else {
		f.submit();
	}
}

function form1(rp){
	var a = document.index;
	var b = document.representante;
	if (document.getElementById('rp') != null)
		document.getElementById('rp').value = rp;	   
	if (a.est_cli.value=="0"){
		alert('Por favor, selecione o seu estado.');
		a.est_cli.focus();
	}
	if (a.est_cli.value!="0"){
		b.est_cli.value = a.est_cli.value;
		b.submit();
	}
	
}

function form2(oc){
	var a = document.index;
	var b = document.orcamento;
	if (document.getElementById('oc') != null)
		document.getElementById('oc').value = oc;	   
	if (a.est_cli.value=="0"){
		alert('Por favor, selecione o seu estado.');
		a.est_cli.focus();
	}
	if (a.est_cli.value!="0"){
		b.est_cli.value = a.est_cli.value;
		b.submit();
	}
	
}

function form3(an){
	var a = document.index;
	var b = document.anuncie;
	if (document.getElementById('an') != null)
		document.getElementById('an').value = an;
	if (a.est_cli.value=="0"){
		alert('Por favor, selecione o seu estado.');
		a.est_cli.focus();
	}
	if (a.est_cli.value!="0"){
		b.est_cli.value = a.est_cli.value;
		b.submit();
	}
	
}
