<!-- 
function imgWindow(title,image,width,height) {
trueheight = height + 25
contents = '<head><title>' + title + '</title><style>a{text-decoration:none};a:hover{text-decoration:underline}</style></head><body bgcolor="black" onLoad="window.focus()" style="margin:0;">' 
+ '<img src="images/' + image + '" alt="' + title + '"><br><center><a href="javascript:window.close()"><font color="yellow" face="comic sans ms" size="4"><b>Click to close window</b></font></a></center>' 
+ '</body>' 
options = "toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + width + ",height=" + trueheight ;
newwindow = window.open("","_blank", options);
newwindow.document.write(contents);
newwindow.document.close();
}
//-->