<!--
var wName;
var wWidth;
var wHeight;
var wTitle;

function showImage() {
	var w;
	w = window.open("","","width="+wWidth+",height="+wHeight+",status=no,toolbar=no,menubar=no");
	if (w != null) {
  		w.document.open('text/html');
  		w.document.write("<html><head><title>"+wTitle+"</title></head><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>");
  		w.document.write("<img src="+wName+" width="+wWidth+" border=0 title="+wTitle+" alt="+wTitle+">");
  		w.document.write("</body></html>");
  		w.document.close();
		}
	}
//-->