// JavaScript Document

function PageStart(ThisPage,Title) {
MenuImage = new Array();
MenuId = new Array();
MenuPage = new Array();

if   (Title)
     {PageTitle = Title;}
else {PageTitle = "PHOTOGRAPHY";}

MenuId[0] = "home";
MenuId[1] = "biography";
MenuId[2] = "gallery";
MenuId[3] = "diary";
MenuId[4] = "booksales";
MenuId[5] = "printsales";
MenuId[6] = "links";
MenuId[7] = "contact";

MenuImage[0] = "/media/home";
MenuImage[1] = "/media/bio";
MenuImage[2] = "/media/gallery";
MenuImage[3] = "/media/diaryandinformation";
MenuImage[4] = "/media/booksales";
MenuImage[5] = "/media/printsales";
MenuImage[6] = "/media/links";
MenuImage[7] = "/media/contact";

MenuPage[0] = "/index.html";
MenuPage[1] = "/pages/biography/index.html";
MenuPage[2] = "/pages/gallery/index.html";
MenuPage[3] = "/pages/diary/index.html";
MenuPage[4] = "/pages/booksales/index.html";
MenuPage[5] = "/pages/printsales/index.html";
MenuPage[6] = "/pages/links/index.html";
MenuPage[7] = "/pages/contact/index.html";

for (var i = 0; i < MenuImage.length; i++)
    {if    (ThisPage == MenuId[i])
	       {MenuImage[i] += "_gy.gif";}
     else  {MenuImage[i] += "_gn.gif";}}


document.write('<div style="margin:0px auto 0px auto;width:620px;padding:0px 0px 0px 0px;border:0px;height:1000px;">');

document.write('<div style="margin:2px 0px 3px 0px;padding:0px 0px 0px 0px;text-align:center;border:0px;vertical-align:top;">');
document.write('<span style="color:#FFFFFF;font-size:19px;font-family:Verdana,Arial,Helvetica,sans-serif;"><span style="color:#666666;font-weight:bold">TONY BUTCHER</span>&nbsp;&nbsp;' + PageTitle + '</span>');
document.write('</div>');

document.write('<div style="margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;text-align:center;border:1px solid #333325;">');
document.write('<table width="598" height="26" border="0" cellpadding="0" cellspacing="0" bgcolor="#0d0d0d">');
document.write('<tr height="26">');
document.write('<td align="center" height="26" bgcolor="#121104" width="59"><a href="' + MenuPage[0] + '" onFocus="this.blur()"><img src="' +  MenuImage[0] + '" width="59" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="80"><a href="' + MenuPage[1] + '" onFocus="this.blur()"><img src="' +  MenuImage[1] + '" width="80" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="58"><a href="' + MenuPage[2] + '" onFocus="this.blur()"><img src="' +  MenuImage[2] + '" width="58" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="136"><a href="' + MenuPage[3] + '" onFocus="this.blur()"><img src="' +  MenuImage[3] + '" width="136" height="18" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="79"><a href="' + MenuPage[4] + '" onFocus="this.blur()"><img src="' +  MenuImage[4] + '" width="79" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="78"><a href="' + MenuPage[5] + '" onFocus="this.blur()"><img src="' +  MenuImage[5] + '" width="78" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="46"><a href="' + MenuPage[6] + '" onFocus="this.blur()"><img src="' +  MenuImage[6] + '" width="46" height="15" border="0"></a></td>');
document.write('<td align="center" height="26" bgcolor="#121104" width="70"><a href="' + MenuPage[7] + '" onFocus="this.blur()"><img src="' +  MenuImage[7] + '" width="70" height="15" border="0"></a></td>');
document.write('</tr>');
document.write('</table>');
document.write('</div>');

}


function PageEnd() {
a = new Date();
var b = a.getFullYear();	

document.write('<div style="margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;text-align:center;border:1px solid #333325;">');
document.write('<div style="text-align:center;height:20px;color:gray;font-size:9px;font-family:Verdana,Arial,Helvetica,Geneva;text-decoration:none;padding-top:5px;">Copyright &copy; 2001 - ' + b + ' | Tony Butcher. All Rights Reserved.</div>');
document.write('</div>');

document.write('</div>');
}


