function imageBrowser(x, y, title, file) {
		var image = window.open("zoom.html", "", "width=" + x + ",height=" + y + ",title=" + title + ",toolbar=no,fullscreen=no,menubar=no");
		image.document.write("<html><head><title>\"" + title + "\"</title></head><body bgcolor=\"#333333\" style=\"margin: 0; padding: 0;\"><div align='center' style=\"padding: 10px;\"><img src=\"" + file + "\"></div></body></html>");
}