// JavaScript Document
<!-- Begin
function popupWin() {
text = "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>\n";
text += "<html>\n";
text += "<head>\n";
text += "<title>Wir trauern um Wolfgang Bauer</title>\n";
text += "<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>\n";
text += "<link href='sessler.css' rel='stylesheet' type='text/css'>\n";
text += "</head>\n";
text += "<body bgcolor='#333333' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>\n";
text += "<table width='669' border='0' cellpadding='0' cellspacing='0' class='standard01' style='standard'>\n";
text += "  <tr> \n";
text += "    <td width='33'>&nbsp;</td>\n";
text += "    <td width='621'>&nbsp;</td>\n";
text += "    <td width='15'>&nbsp;</td>\n";
text += "  </tr>\n";
text += "  <tr> \n";
text += "    <td width='33'>&nbsp;</td>\n";
text += "    <td width='621'>&nbsp;</td>\n";
text += "    <td width='15'>&nbsp;</td>\n";
text += "  </tr>\n";
text += "  <tr> \n";
text += "    <td width='33'>&nbsp;</td>\n";
text += "    <td width='621'>&nbsp;</td>\n";
text += "    <td width='15'>&nbsp;</td>\n";
text += "  </tr>\n";
text += "  <tr> \n";
text += "    <td width='33'>&nbsp;</td>\n";
text += "    <td width='621'> <p class='linkhell'><font size='+1'>WIR TRAUERN UM WOLFGANG BAUER !!</font></p>\n";
text += "      <p align='justify' class='linkhell'><br>\n";
text += "        &quot;Mit Wolfgang Bauer hat mich eine jahrzehntelange Freundschaft verbunden. \n";
text += "        Diese war aufrichtig und immer getragen von dem Gedanken des gemeinsamen \n";
text += "        Verstehens - sowohl k&uuml;nstlerisch, menschlich, aber auch unterst&uuml;tzend. \n";
text += "        Die gemeinsamen Reisen bis auf die Sonnenpyramide in Mexiko haben unsere \n";
text += "        Freundschaft vertieft. Der Stehsatz 'Wir werden ihm ein ehrendes Gedenken \n";
text += "        wahren' trifft so auf Wolfi Bauer nicht zu. Wir sagen, wir werden ihn \n";
text += "        in unserem Herzen bewahren und immer in Gedanken an ihn eine Kerze der \n";
text += "        Liebe entz&uuml;nden.<br>\n";
text += "        Uns weiterhin f&uuml;r sein dramatisches Oeuvre einzusetzen, ist uns Auftrag \n";
text += "        und Verpflichtung zugleich.&quot;</p>\n";
text += "      <p class='linkhell'>Ulrich N. Schulenburg</p>\n";
text += "      <p align='justify' class='linkhell'><br>\n";
text += "        Wolfgang Bauer ist am Freitag, den 26. August 2005 im Alter von 64 Jahren \n";
text += "        gestorben. <br>\n";
text += "        Ausf&uuml;hrliche Informationen zur Biographie und dem literarischen Schaffen \n";
text += "        finden Sie unter</p>\n";
text += "      <p class='linkhell'><a href='http://www.sesslerverlag.at/upload_file/02314729082005.doc' class='linkhell'>http://www.sesslerverlag.at/upload_file/02314729082005.doc</a><br>\n";
text += "      </p></td>\n";
text += "    <td width='15'>&nbsp;</td>\n";
text += "  </tr>\n";
text += "</table>\n";
text += "</body>\n";
text += "</html>\n";
setTimeout('windowProp(text)', 10); 		// delay 1 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=700,height=400');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 30000);	// delay 10 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
//  End -->


