  function newwin(mypict,mywidth,myheight) {

    attr = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + mywidth + ",height=" + myheight

    url =  "images/" + mypict;

    mywin = window.open(url,"extpict", attr);
	mywin.focus();
  }

  

function showPict(){

	win1 = window.open("","DisplayWindow","toolbar=no,width=300,height=200,directories=no,status=no,scrollbars=no,resize=no,menubar=no");

	win1.document.write("<html><head>");

	win1.document.write("<link rel=\"stylesheet\" href=\"pekarek.css\">")

	win1.document.write("</head><body bgcolor=\"#FFFFFF\">");

	win1.document.write("<table width=\"702\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">")

	win1.document.write("<tr>") 

	win1.document.write("<td width=\"20\" height=\"65\" valign=\"bottom\" align=\"left\">&nbsp;</td>")

	win1.document.write("<td height=\"65\" align=\"left\" valign=\"top\"><p>55 Zeichnungen, Tusche auf Papier, 1998 </p></td>")

	win1.document.write(" <td width=\"20\" height=\"65\" valign=\"bottom\">&nbsp;</td>")

	win1.document.write("</tr>")

	win1.document.write("<tr>") 

	win1.document.write("<td width=\"20\" height=\"419\" valign=\"bottom\" align=\"left\">&nbsp;</td>")

	win1.document.write("<td height=\"419\" align=\"left\" valign=\"top\"><img src=\"pict/artdambu.jpg\" width=\"660\" height=\"412\"></td>")

	win1.document.write("<td width=\"20\" height=\"419\" valign=\"bottom\">&nbsp;</td>")

	win1.document.write("</tr></table>")

	win1.document.write("<CENTER><FORM NAME=\"formx\">");

    win1.document.write("<INPUT TYPE=\"button\" VALUE=\" C L O S E \" onClick=\"self.close()\">");

    win1.document.write("</FORM></BODY></HTML>");

  }

  

  