function window_open(page, name, properties)
{
	var win = window.open(page, name, properties);
	if (!win) {
		alert("The requested page cannot open in a new window. Please check your popup settings.");
	}
	return win;
}
function openImage(img, caption)
{
	if (!caption) caption="";

	var imgObject = new Image();
	imgObject.src = img;

	var imgWidth = imgObject.width+20;
	var imgHeight = imgObject.height+100;

	var html="";
	html += "<html><head><title>"+caption+"</title><link rel='stylesheet' href='includes/black-theme.css'></head><body style='margin:0px'>";
	html += "<center><div style='font-weight:bold'>"+caption+"</div><a href='javascript:self.close()'><img src='"+img+"' border='0' title='"+caption.replace("<br>","\n")+" [Click to close]' /></a><br><a href='javascript:self.close()'>Close this window</a></center>";
	html += "<script>window.resizeTo("+imgWidth+","+imgHeight+")</script></body></html>";

	var w = window_open('', '', 'resizable');
	w.document.write(html);
}
