function Zoom2(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><EMBED SRC='160_4.mov' WIDTH='320' HEIGHT='256' ALIGN='BOTTOM'><\/center><\/body><\/html>")
 zoomWindow.document.title = wintitle

 zoomWindow.focus()
}