function navOver(cell){
    var navTable = document.getElementById('navTable');
	navTable.tBodies[0].rows[1].cells[cell].bgColor=randomColor();
}

function returnNav(cell){
    var navTable = document.getElementById('navTable');
	navTable.tBodies[0].rows[1].cells[cell].bgColor="#C3CD9D";
}

function randomColor(){
	
	var randomColor="#";
	var colors=["F2E4B1","959361","816823","F4F7DE","C0BA7E"];
	randomColor += colors[Math.ceil(Math.random() * colors.length-1)];
	
	return randomColor;
}

 function openPicture(pic, height, width){ 
 	var picWin, doc, tc 
	if(!height) height=375;
	if(!width) width=500;
	
 	picWin=window.open("","Picture_Window","screenX=80,screenY=80,width=" + width + ",height=" + height) 
 	picWin.document.open() 
 	doc=picWin.document; 
 	doc.writeln("<html><head><title>Photograph</title><style> td,body { font-family:Arial; font-size:8pt; } </style></head><body bgcolor=white topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><center>") 
 	doc.writeln("<a href='Javascript:window.close()'><img src='photos/"+pic+"' width=" + width + " height=" + height + " border=0></a>") 
 	doc.writeln("</center></body></html>") 
 	doc.close() 
 	picWin.focus() 
 } 
 
 function printPage(){
	var page = escape(location);
	var printPage = 'http://www.auburnheritage.org/print/printable.php?url=' + page;
				
	var newWindow;
	newWindow=window.open(printPage,'_printable','scrollbars=yes,width=600,height=400');
	newWindow.focus();
	
}

function mailPage(){
	var page = escape(location);
	var mailPage = 'http://www.auburnheritage.org/mail/mailpage.php?url=' + page;
		
	var newWindow;
  	newWindow=window.open(mailPage,'_mailpage','scrollbars=yes,width=500,height=400');
  	newWindow.focus();
}
 
