var anoDemonstrativo;

function getAno(combo) {

	var x = combo.selectedIndex;
	anoDemonstrativo = combo.options[x].value;

}

//JS do segundo include
function valida(){
	
	//if ((document.frm.numero.value.length==12)&&(document.frm.digito.value.length==1)){
	if (document.frmDemonstrativo.numero.value.length == 13) {
		window.open("phpEncaminha.php?numero=" + document.frmDemonstrativo.numero.value + "&ref=" + anoDemonstrativo, target = "_blank", "");
		window.open('informativo.php', '', 'scrollbar=no,width=290,height=507');
	//document.frmDemonstrativo.submit();
	}
	else {
		window.alert("Preencha o campo corretamente.");
		//window.alert("&Eacute; necess&aacute;rio preencher com todos os n&uacute;meros da carteirinha, ap&oacute;s o '0 025'.");
		document.frmDemonstrativo.numero.focus();
	}
	
}
function solicitacaoCartao() {

}
function tabDigito(){
	if (document.frmDemonstrativo.numero.value.length==12){
	//document.frm.digito.focus();
	}
	
}


//JS do primeiro include
function teste(){
	
	//if ((document.frm.numero.value.length==12)&&(document.frm.digito.value.length==1)){
	if ((document.frm.numero.value.length==12)){
	    document.frm.submit();
	}else{
	    window.alert("Preencha o campo corretamente.");
	}
	
}
function tabDigito1(){
	if (document.frm.numero.value.length==12){
	    document.frm.digito.focus();
	}
}
