/* Javascript um ein neues Fenster zu öffnen, da 'target_blank' in xhtml 1.1 nicht enthalten ist. */

function newwindow (adress) {
	window1 = window.open(adress);
	window1.focus(); }
