
function imageWindow(title, src, width, height, alt) {

    center_x = Math.round((window.screen.availWidth - width) / 2);
    center_y = Math.round((window.screen.availHeight - height) / 2);

	var html = "<html>";
	html += "<head><title>" + title + "</title></head><body style=\"margin:0px\">";
	html += "<a href=\"javascript:close()\"/><img src=\"" + src + "\" border=\"0\" alt=\"" + (alt != undefined ? alt : '') + "\" /></a>";
	html += "</body></html>";

    var popup = window.open("", "img", "scrollbars=no, width=" + width + ", height=" + height + ", top=" + center_y + ", left=" + center_x);
    
    popup.document.open();
    popup.document.write(html);
    popup.document.close();
    popup.focus();
    
}
