site = "http://www.attitudetravel.com";

function combineMenus(frm, menu1, menu2) {
    with (frm) {
    str = menu2.options[menu2.selectedIndex].value;
    url = site + "/" + str + "/";
    window.location.href = url;
    }
   }

    
    function popUpthree (URL) {    
    day = new Date();    
    id = day.getTime();    
    eval ("page" + id + " = window.open(URL, '"+ id +"','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=640,height=480,left=100,top=165');");    
    } //  End -->


function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;

