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