function new_window(pic,x,y,txt) {
   //link = window.open('window.htm',"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=100,top=100,width="+x+",height="+y);
   //link.picture.src = pic
  	link = open("", "mphW", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=100,top=100,width="+x+",height="+y);
	link.document.open();
	link.document.writeln("<html>");
	link.document.writeln("<head>");
	link.document.writeln("<title>Picture</title>");
	link.document.writeln("</head>");
	link.document.writeln("<body topmargin=\"0\" leftmargin=\"0\">");
	link.document.writeln("<img id=\"picture\" name=\"picture\" src=\"" + pic + "\">");
	link.document.writeln("<center><p style=\"font-size:10.0pt;font-family:Arial;\">" + txt + "</p></center>");
	link.document.writeln("</body>");
	link.document.writeln("</html>");
	link.document.close();
	link.focus();
}
