<!--

function openpopup(strImage){
var popurl="popup.html"
var height=400;
var H=(screen.height-height)/2;
var width=500;
var W=(screen.width-width)/2;

winprops = 'height='+height+',width='+width+',top='+H+',left='+W+',resizable='+false+''

winprops=window.open('','',winprops)

winprops.document.write('<html><head><title></title></head><body>');
winprops.document.write('<img src="'+strImage+'">');
winprops.document.write('</body></html>');
winpops.focus();
}


//-->
