function header() {
  document.write('<div align="center"><a href="index.htm"><img src="images/signature.gif" border="0"><br></a></div>')
}

function footer() {
  document.write('<table width="100%" height="100%" cellpadding="0" cellspacing="0">')
  document.write('<tr><td width="16%" height="90" valign="middle" class="navigation" align="center">')
  document.write('<a href="landscapes.htm" onmouseover="newImg(\'landscape\',\'landscapeOver\')" onmouseout="newImg(\'landscape\',\'landscapeUp\')">LANDSCAPES<br>')
  document.write('<img src="images/landscapeUp.jpg" border="0" name="landscape" width="79" height="62"></a></td><td width="5%"></td>')
  document.write('<td width="16%" valign="middle" class="navigation" align="center">')
  document.write('<a href="portraits.htm" onmouseover="newImg(\'portrait\',\'portraitOver\')" onmouseout="newImg(\'portrait\',\'portraitUp\')">PORTRAITS<br>')
  document.write('<img src="images/portraitUp.jpg" name="portrait" border="0" width="81" height="62"></a></td><td width="5%"></td>')
  document.write('<td width="16%" valign="middle" class="navigation" align="center">')
  document.write('<a href="still_lifes.htm" onmouseover="newImg(\'still\',\'stillOver\')" onmouseout="newImg(\'still\',\'stillUp\')">STILL LIFES<br>')
  document.write('<img src="images/stillUp.jpg" name="still" border="0" width="95" height="62"></a></td><td width="5%"></td>')
  document.write('<td width="16%" valign="middle" class="navigation" align="center">')
  document.write('<a href="bio.htm" onmouseover="newImg(\'bio\',\'bioOver\')" onmouseout="newImg(\'bio\',\'bioUp\')">ABOUT<br>')
  document.write('<img src="images/bioUp.jpg" name="bio" border="0" width="66" height="62"></a></td><td width="5%"></td>')
  document.write('<td width="16%" valign="middle" class="navigation" align="center">')
  document.write('<a href="contact.htm" onmouseover="newImg(\'contact\',\'contactOver\')" onmouseout="newImg(\'contact\',\'contactUp\')">CONTACT<br>')
  document.write('<img src="images/contactUp.jpg" name="contact" border="0" width="81" height="62"></a></td></tr></table>')
}

if (document.images)
{
	landscapeUp			= new Image
	landscapeOver	  	= new Image
	portraitUp			= new Image
	portraitOver	   	= new Image
	stillUp				= new Image
	stillOver			= new Image
	bioUp				= new Image
	bioOver				= new Image
	contactUp			= new Image
	contactOver			= new Image
	
	landscapeUp.src	     = "images/landscapeUp.jpg"
	landscapeOver.src    = "images/landscapeOver.jpg"
	portraitUp.src	     = "images/portraitUp.jpg"
	portraitOver.src    = "images/portraitOver.jpg"
	stillUp.src			= "images/stillUp.jpg"
	stillOver.src			= "images/stillOver.jpg"
	bioUp.src			= "images/bioUp.jpg"
	bioOver.src			= "images/bioOver.jpg"
	contactUp.src	     		= "images/contactUp.jpg"
	contactOver.src	       		= "images/contactOver.jpg"
}

function newImg(imgName,newImg)
{
	if (document.images)
	{
		document[imgName].src= eval(newImg + ".src")
	}
}

function newWin(location, title, width, height) {
		previewWindow = window.open(location, title, "width=" + width + ",height=" + height)
	}
