function popup(URL, width, height, title)
{
	windowoptions = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	
	graficwindow = window.open("", "", windowoptions + ',width=' + width + ',height=' + height);
	graficwindow.focus();
	graficwindow.document.open();
	
		with(graficwindow)
		{
			document.write("<html><head>");
		  document.write("<title> Popup: "+ title +"</title>");
		  document.write("</head>");
		  document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		  document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ URL +"\" title=\"Click to close!\">");
		  document.write("</body></html>");
		}
		
		return;
}
