function U_80thFTW()
{
    try
    {  
        var img = document.createElement("IMG");            //create image element
        var anchor = document.createElement('a');           //create anchor element
        var id = document.createAttribute('id');            //create id
        var href = document.createAttribute('href');
        var target = document.createAttribute('target');
        target.nodeValue = '_blank';
                
//        document.getElementById('images').innerHTML+="<br /><b><font color=#0000FF>93rd BS<br />";
//        img.src = "/images/maps/UTTR_MAP.jpg";            //add image to image element
//        id.nodeValue = 'a1';
//        href.nodeValue = 'http://www.usahas.com/images/maps/UTTR_MAP_big.jpg';
//        anchor.setAttributeNode(href);
//        anchor.setAttributeNode(target);
//        anchor.setAttributeNode(id);
//        //img.innerText="test";                
//        document.getElementById('images').appendChild(anchor); //add image element to division                
//        document.getElementById('a1').appendChild(img); //add image element to division  
                
        document.getElementById('images').innerHTML+="<br /><b><font color=#0000FF>CURRENT ROUTES:<br />NAVA<br />NAVB<br />NAVC<br />NAVD<br /><br />FUTURE ROUTES:<br />NAV_A<br />NAV_C<br />NAV_D<br /><br />";
//        img.src = "/images/maps/324AG.jpg";            //add image to image element
        id.nodeValue = 'a1';
//        href.nodeValue = 'http://www.usahas.com/images/maps/324AG_big.jpg';
        anchor.setAttributeNode(href);
        anchor.setAttributeNode(target);
        anchor.setAttributeNode(id);        
        document.getElementById('images').appendChild(anchor); //add image element to division                
        document.getElementById('a1').appendChild(img); //add image element to division 
        
    }
    catch(err)
    {
        alert("80thFTW "+err);
    }	
  
}





