var fenetreImg; function photo( image, title, width, height) { var wwidth = 20 + parseInt(width); var wheight = 30 + parseInt(height); fenetreImg = window.open('','_blank','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,' + 'width=' + wwidth + ',height=' + wheight); texte = '<' + 'HTML' + '><' + 'HEAD' + '><' + 'TITLE' + '>' + title + '<' + '/TITLE' + '><' + '/HEAD' + '><' + 'BODY' + '>'; texte += '<' + 'CENTER' + '><' + 'IMG SRC="' + image + '" BORDER=0' + ' ALT="' + title + '" WIDTH=' + width + ' HEIGHT=' + height + '><' + '/CENTER' + '><' + '/BODY' + '><' + '/HTML' + '>'; fenetreImg.document.write(texte); fenetreImg.focus(); fenetreImg.document.close(); return; }