// change historical photo
function changePhoto(which , caption, lowResolution) {
    document.images.highlighted_image.src = which;
    var x=document.getElementById('caption');
    x.innerHTML=caption
    if(lowResolution == 'true'){
        document.getElementById('ViewLarger').style.display = "none";
    }else{
        document.getElementById('ViewLarger').style.display = "";
    }
}
// open photo in new window
function openNewWindow() {            
    var link = document.images.highlighted_image.src
    OpenWindow = window.open ("", 'newwindow', config='height=400 , width=600, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no');
    OpenWindow.document.write("<BODY >")	
    OpenWindow.document.write("<img src="+link+" WIDTH=\"100%\" HEIGHT=\"100%\">")
    OpenWindow.document.write("</BODY>")
    OpenWindow.document.write("</HTML>")
    OpenWindow.document.close()
    self.name="main"
}