function enlargeImage(which, wid, hi) {
    var imsrc = which.href;
	wid = wid + 25;
	hi = hi + 50;
	w1=window.open('','w1','width='+wid+',height='+hi+',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
	w1.document.open();
	w1.document.write("<html><head><title>Image Zoom<\/title><META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\"><META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\"><\/head>");
	w1.document.write("<body bgcolor=\"#FFFFFF\" text=\"#000000\" leftmargin=2 topmargin=10><p align=center><a href=\"javascript:window.close();\" title=\"click to close\">");
	w1.document.write("<img border=\"0\" src=\"" + imsrc + "\"><br />");
	w1.document.write("<font size=1 face=tahoma color=#000000>close window<\/font><\/a><\/body><\/html>");
	return false;
};

