function validadados() {
var doc = document.FORM1;
if (doc.DE.value.length <3) {
alert("Por favor selecione o aeroporto de origem");
doc.DE.focus();
return false; 
}
if (doc.PARA.value.length <3) {
alert("Por favor selecione o aeroporto de destino");
doc.PARA.focus();
return false;
}
return true;
}
function OrigemDestino()
{
 if(validadados()){
    var pDe = document.FORM1.DE.value;
    var pPara = document.FORM1.PARA.value;
    var pCia = document.FORM1.CIA.value;
    var pAgencia = 'naja';
    var winTimetable = null;
    winTimetable = window.open("http://www.digirotas.com.br/clientes_ws/naja/voos/voos1.asp?DE="+pDe+"&PARA="+pPara+"&CIA="+pCia+"&Agencia="+pAgencia,"winTimetable","toolbar=no, status=yes, scrollbars=yes, resizable=no, width=650, height=400, top=0, left=0")
 }
}
