function imagePopup(imagepath, title, width, height) {
	var dimstring = "width="+(width)+",height="+(height);

	var ua = navigator.userAgent.toLowerCase();
	if(ua.indexOf("firefox") != -1) {
		dimstring = "innerwidth="+width+",innerheight="+height;
	}

	var html = '<html>' +
		'<head>' +
		'<title>' + title + '</title>' +
		'<style>' +
		'body { ' +
		'background: #fff; ' +
		'font-family: arial, helvetica, verdana, sans-serif; color: #999; font-size: 77%;' +
		'margin:0; padding:0;' +
		' } ' +
		'</style>' + 
		'</head>' +
		'<body>' +
		'<a href="#" onclick="window.close()";>' + 
		'<img src="' + imagepath +'" border="0" width="' + width + '" height="' + height + '">' +
		'</a>' +
		'</body>' +
		'</html>';
	
	var popup = window.open("about_blank", "popup",
		dimstring+",menubar=no,status=no,locationbar=no");
	popup.document.write(html);
	popup.document.close();
	//popup.resizeTo(width, height);
	popup.focus();
}