<!--
function show (id){

	if (document.getElementById(id).style.display == 'none'){
		document.getElementById(id).style.display = "";
	}else{
		document.getElementById(id).style.display = 'none';
	}

}

function ViewImage(bildurl,b,h,bildtitel)
{

var eigenschaften,sbreite,shoehe,fenster,b,h;

// stellt die Bildschirmabmessungen fest
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

if(ns6||ns4) {
sbreite = innerWidth;
shoehe = innerHeight;
}
else if(ie4) {
sbreite = document.body.clientWidth;
shoehe = document.body.clientHeight;
}

x = (sbreite-b)/2;
y = (shoehe-h)/2;

b=b+20;
h=h+20;

eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,statusbar=0";

fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write('<title>'+ bildtitel +'</title></head>');
  // Zeile geändert Aug 2003 (Dreamweaver machte Probleme)
  document.write('<' + 'body');// bei Focusverlust schliessen
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0">');
  document.write('<center>');
  document.write('</body></html>');
  fenster.document.close();
}
}


function zeige_scroll(url,fensterbreite,fensterhoehe){
var breite = screen.width;
var hoehe = screen.height;
var pos_x = (breite/2)-(fensterbreite/2);
var pos_y = (hoehe/2)-(fensterhoehe/2);

var MeinFenster = window.open(url, "FensterNeu","width="+fensterbreite+",height="+fensterhoehe+",left="+pos_x+",top="+pos_y+",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,dependent=no");
MeinFenster.focus();

}
//-->
