<!-- 

function openWin(imgName,imgWidth,imgHeight){
                    var winBg='white';
                    var winProps='height='+imgHeight+', width='+imgWidth+'';
                    var newWin=window.open('', '', 'width=1024,height=725,scrollbars=yes,left="10",top="10"');
                    newWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01                        Transitional//EN"><html><head><title>'+winTitle+'</title></head>');
                    newWin.document.write('<body bgColor="'+winBg+'"><img src="'+imgName+'" border=0><input type="button" value="Close Window"                    onClick="window.close()"></body></html>');
                   newWin.document.close();
            }

//-->
