﻿// ---------------------------------------------------------------------------------------------
// Base Library for BellaTerra Travel
// ---------------------------------------------------------------------------------------------

function showHeader(fileName) {
    var alternateContent = "<img src='images/BellaTerra-Header.png' width='768px' border='0' style='background-color: #FFFFFF;'  usemap ='#menu' />";
    document.write(alternateContent);  
    document.write('<map id ="menu" name="menu">');
    document.write('    <area shape ="rect" coords ="320,0,460,234" href ="index.html" />');
    document.write('    <area shape ="rect" coords ="5,255,75,280" href ="index.html" />');
    document.write('    <area shape ="rect" coords ="100,255,225,280"  href ="destinations.html" />');
    document.write('    <area shape ="rect" coords ="255,255,385,280" href ="reservations.html" />');
    document.write('    <area shape ="rect" coords ="410,255,515,280" href ="resources.html" />');
    document.write('    <area shape ="rect" coords ="550,255,620,280" href ="about.html" />');
    document.write('    <area shape ="rect" coords ="645,255,760,280" href ="contactus.html" />');
    document.write('</map>');
}




