function Zoom(imgName,imgWidth,imgHeight, wintitle) 
{
 iScreenWidth=(screen.width-imgWidth)/2
 iScreenHeight=((screen.height-imgHeight)/2)
 zoomWindow = window.open('', 'zoomWin', 'width='+imgWidth+',height='+imgHeight+',top='+iScreenHeight+',left='+iScreenWidth+',toolbar=0,menubar=0,location=0,scrollbars=0')
 zoomWindow.document.write("<html><head><title>Loading Image...<\/title><\/head><body leftmargin=2 topmargin=2 marginwidth=0 marginheight=0><center><img src='",imgName,"' alt=''><\/center><\/body><\/html>")
 zoomWindow.document.title = wintitle
 zoomWindow.focus()
}