function loadImages(url, img01, img02, img03, txt) {
  var ttitle = "<html><head><title>" + txt + " / Grossformat<\/title>\n";		
  var win, zeit=60000;
 		myWindow=window.open(url, "_blank");
		myWindow.document.open();
		myWindow.setTimeout ('window.close ()',zeit);
		myWindow.document.write(ttitle);
		myWindow.document.write("<\/head><body leftmargin=\"0\" topmargin=\"0\"  marginwidth=\"0\"  marginheight=\"0\" bgcolor=\"#E1E1E1\">");
    myWindow.document.write("<table width=100% border=\"2\" bgcolor=\"#999999\" align=\"center\" valign=\"center\" cellpadding=\"0\" cellspacing=\"0\">");
    myWindow.document.write("<tr></tr>");
    myWindow.document.write("<tr><td rowspan=\"3\" height=\"590\" align=\"center\"><img src=\"images/" + img01 + ".jpg\"</td></tr>");
    myWindow.document.write("<tr><td align=\"center\"><img src=\"images/" + img02 + ".jpg\"</td></tr>");
    myWindow.document.write("<tr><td align=\"center\"><img src=\"images/" + img03 + ".jpg\"</td></tr>");
    myWindow.document.write("</table>");	
	  myWindow.document.write("<\/body><\/html>");
		myWindow.focus();
}
