<!--
function showImage( imageName, imageTitle )
{
   var imageURL = imageName.src
   var imageWidth = imageName.width
   var imageHeight = imageName.height
   
   imageWidth += 15
   imageHeight += 20
   
   var newWindow = window.open( imageURL, 'newWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + imageWidth + ',height=' + imageHeight )
   
   newWindow.document.write( '<html><head><title>' + imageTitle + '<\/title><\/head><body><img src= "' + imageURL + '"<\/body><\/html>' )

   newWindow.document.close()
   
//   newWindow.resizeBy( imageName.width - newWindow.document.body.clientWidth, imageName.height - newWindow.document.body.clientHeight )   

   newWindow.focus()
}   
//-->