<!--
function altcid(grp)
{
 if (grp=='b')
 {
   var cbPaisEst = eval("document.all.estados");
   var cbCid     = eval("document.all.cidades");
 } else {
   var cbPaisEst = eval("document.all.paises");
   var cbCid     = eval("document.all.cidadesext");
 }
 if (cbPaisEst.selectedIndex > 0) {
    var ISel = cbPaisEst.options[cbPaisEst.selectedIndex].value ;
    while (cbCid.length > 0) {cbCid.options[0]=null};
    (grp=='b') ? cid = B[ISel].split("|") : cid = E[ISel].split("|") ;
    cbCid.options[0]= new Option ("selecione a cidade", "") ;
    for (i=0; i<cid.length; i++)
       {
        tcid = cid[i].split("#") ;
        cbCid.options[i+1]= new Option (tcid[0], tcid[0]+'&'+ tcid[1]);
       } ;
  } else {
    while (cbCid.length > 0) {cbCid.options[0]=null};
    (grp=='b') ? cbCid.options[0]= new Option ("selecione um estado", "") : cbCid.options[0]= new Option ("selecione um país", "") ;
  }
}

function exibetempo(grp)
{
 if (grp=='b') {
    var comboCid = eval("document.all.cidades");
    var Url = "http://guia4rodas.abril.com.br/tempo/pop_prev_brasil.shtml?" ;
    var Alt = 530 ;
 } else {
    var comboCid = eval("document.all.cidadesext");
    var Url = "http://guia4rodas.abril.uol.com.br/site/tempo/pop_prev_internacional.shtml?" ;
    var Alt = 465 ;
 }
 var IS = comboCid.options[comboCid.selectedIndex].value ;
 if (comboCid.selectedIndex > 0 ) {
   window.open(Url+IS ,'_blank', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,menubar=no,width=468,height=' + Alt + ',top=0,left=0') ;
 }

}
//-->
