    function doBig(src1)
    {
        document.getElementById("big").src = src1;
    }

    function header(left, valign, halign, title, fs)
    {
        if(title==null)
            title="";

        document.write('<center>');
        document.write('  <table width="800" cellpadding="0" cellspacing="0">');
        document.write('    <tr>');
//        document.write('      <td colspan="2">');
        document.write('        <td colspan="2"><img src="header.gif" vspace="0"/></td>');
//        document.write('      </td>');
        document.write('    </tr>');
        document.write('    <tr>');
        document.write('      <td width="299" style="padding:0px" valign="'+valign+'" align="'+halign+'">');
        if(left.indexOf(".gif")!=-1)
            document.write('        <img src="'+left+'" vspace="0"/><br />');
        else
        {
            document.write('<br /><img src="hr.gif" /><br /><span class="galleryTitle" style="font-size:'+fs+'">'+title+'</span><img src="hr2.gif" /><br /><br />');
            document.write('<div style="width:260px;text-align:justify;padding:5px;border:1px solid #000000;background-color:#DADADA">'+left+'</div>');
        }
        document.write('      </td>');
        document.write('      <td align="center" width="501" valign="top" style="background-color:#DDDDDD;border:5px solid #5A5A5A;padding-top:5px;border-top:0px solid #5A5A5A">');
        document.write('        <table width="100%" class="mainNav"><tr><td><img src="bullet1.gif"></td><td><a href="home.html">HOME</a></td><td><img src="bullet1.gif"></td><td><a href="gallery.html">GALLERIES</a></td><td><img src="bullet1.gif"></td><td><a href="contact.html">CONTACT</a></td><td><img src="bullet1.gif"></td></tr></table>');
        document.write('        <hr width="95%" />');
    }
    
    function footer()
    {
        document.write('<br /></td>');
        document.write('    </tr>');
        document.write('    <tr>');
        document.write('      <td colspan="2" align="center">');
        document.write('        <img src="face_sm.gif" />');
        document.write('      </td>');
        document.write('    </tr>');
        document.write('  </table>');
        document.write('  </center>');
    }
    
