function openimage(width, height, title, id)
{
	OpenWindow=window.open("", "ImageVault" + id, "height=" + height + ", width=" + width + ", toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no");
	OpenWindow.document.write("<html><head><title>" + title + "</title></head>");
	OpenWindow.document.write("<body style='margin: 0; background-color: black'>");
	OpenWindow.document.write("<img src='modules/imagevault/image.php?id=" + id + "&height=" + height + "&width=" + width + "'>");
	OpenWindow.document.write("</body></html>");
	OpenWindow.document.close();
}
