function enlarge(imgName, winWidth, winHeight, winTitle) {
var posCode = '';
if (document.all || document.layers || document.createTextNode) {
posX = Math.round((screen.width - winWidth) / 2);
posY = Math.round((screen.height - winHeight) / 2);
posCode = (document.all)? 'left='+posX+',top='+posY : 'screenX='+posX+',screenY='+posY;
}
cardWindow = window.open('','_blank','menubar=no,toolbar=no,scrollbars=no,status=yes,width='+winWidth+',height='+winHeight+','+posCode);
cardWindow.document.open();
cardWindow.document.write('<html><head><title>'+winTitle+'<\/title><\/head>');
cardWindow.document.write('<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
cardWindow.document.write('<img src="'+imgName+'" alt="'+winTitle+'" width="'+winWidth+'" height="'+winHeight+'" /><\/body><\/html>');
cardWindow.document.close();
cardWindow.focus();
}

