function popimage(imagesrc,winwidth,winheight) {
	winwidth=winwidth+30;
	var look = 'scrollbars=yes, width='+winwidth+',height='+winheight+',';
	popwin = window.open("","",look);
	popwin.document.open();
	popwin.document.write('<title>Image Window</title><body topmargin=0 leftmargin=0><img style=cursor:hand; onclick="self.close()" src="'+imagesrc+'"></body>');
	popwin.document.close();
}