<!--
function openWindow(url,width,height,title) {
	newWindow = window.open("","myWindow","width="+width+",height="+height);
	content  = "<html>";
	content += "<head>";
	content += "<meta http-equiv=\"imagetoolbar\" content=\"no\" />";
	content += "<title>"+title+"</title>";
	content += "</head>";
	content += "<body style=\"margin: 0px;\">";
	content += "<img src=\"" + url + "\" width=\"" +width + "\" height=\"" + height + "\" alt=\"" + title + "\" />";
	content += "</body>";
	content += "</html>";
	newWindow.document.write(content);
	newWindow.document.close();
	newWindow.focus();
}
-->