﻿function DisplayImage(picURL)
{
newWindow=window.open(picURL,'newWin','toolbar=no,resizable=yes,width=800,height=600')
newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body style="margin:0px"><img src="'+picURL+'" alt="'+picTitle+'"  /><\/body><\/html>')
newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
newWindow.focus()
}
