function showImage(imgLink,imgWidth,imgHeight){
	imgHeight=imgHeight+32;
	imgWidth=imgWidth+32;
	if (navigator.userAgent.indexOf('Firefox') != -1){
		imgHeight=imgHeight-13;
		imgWidth=imgWidth-12;
	}
	var lf = Math.floor((screen.width-imgWidth)/2);
	var tp = Math.floor((screen.height-imgHeight)/2);
	if (navigator.userAgent.indexOf('Opera') != -1){
		lf = 100;
		tp = 100;
	}
	var tmp="toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,copyhistory=0,left="+lf+",top="+tp+",width="+imgWidth+",height="+imgHeight;
	var ind = imgLink.lastIndexOf('/');
	var fn=imgLink;
	if (ind>-1) fn=imgLink.substring(ind+1,imgLink.length);
	imageWindow=window.open("","","'"+tmp+"'");
	imageWindow.document.open();
	text = "<html><head><title>" + fn + "</title></head><body bgcolor='#ffffff'";
	text += "><center><img src='" + imgLink + "' border=1>";
	text += "</center></body></html>";
	imageWindow.document.write(text);
	imageWindow.document.close();
	imageWindow.focus;
}