function oeffneFenster(sURL, sName, iBreite, iHoehe) {
	sAttribute = "toolbar=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=no,width=" + iBreite + ",height=" + iHoehe;
	
	sHtml ="<html>";
	sHtml+="<head>";
	sHtml+="<title>Instrument Detail</title>";
	sHtml+="</head>";
	sHtml+="<body leftmargin='0' bottommargin='0' rightmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
	sHtml+="<img src="+sURL+">";
	sHtml+="</body>";
	sHtml+="</html>";
	
	fenster = window.open(sURL, sName, sAttribute);
	fenster.moveBy(10,10);
	with (fenster.document) {
		write(sHtml);
	}
	//fenster.scrollBy(600,0);
	fenster.focus();
	}

function adrVersteck() {
	var teil1 = "karl";
	var teil2 = "kirchmeyr.net";
	document.write('<a href=\"mailto:' + teil1 + '@' + teil2 + '\" onClick=\"if(this.blur)this.blur()\">');
	document.write(teil1 + '@' + teil2 + '</a>');
}
function adrVersteck2() {
	var teil1 = "gonkmail";
	var teil2 = "tele2.at";
	document.write('<a href=\"mailto:' + teil1 + '@' + teil2 + '\" onClick=\"if(this.blur)this.blur()\">');
	document.write(teil1 + '@' + teil2 + '</a>');
}