function popup(title, imgSrc, imgWidth, imgHeight) {			
	var wndLeft = (screen.width / 2) - (imgWidth / 2);
	var wndTop = (screen.height / 2) - (imgHeight / 2);
	_w = window.open("about:blank", "_w", "width=" + imgWidth + ",height=" + imgHeight + ",top=" + wndTop + ",left=" + wndLeft);
	var doc = _w.document;
	doc.open();
	doc.write('<html><head><title>' + title + '</title></head>');
	doc.write('<body bgcolor="#ffffff" topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0" marginwidth="0" marginheight="0"">');
	doc.write('<img src="' + imgSrc + '" alt="' + title + '" width="' + imgWidth + '" height="' + imgHeight + '" hspace="0" vspace="0"><br>');
	doc.write('</body></html>');
	doc.close();
	_w.focus();
	return false;
}

