function Zoom(imgName,imgWidth,imgHeight) {

	var count = 0;

	zoomWindow = window.open('', 'zoomWin', 'width='+imgWidth+',height='+imgHeight+'top=10,left=5,toolbar=0,menubar=0,location=0,scrollbars=0')

	zoomWindow.document.write("<html><head><title>Veuillez patienter...<\/title><\/head><body background='images/' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 text='",imgWidth,imgHeight,"' onBlur='close();'><center><img src='",imgName,"' alt=''><\/center><\/body><\/html>")
	zoomWindow.focus()
	zoomWindow.window.resizeTo(imgWidth+10, imgHeight+10);
	zoomWindow.document.title = " Velo Quetzal "
}
