
<!--
   
function Zeigen(w_1,w_2,w_3,w_4)
   {
   bild = w_1;
   titel = w_2;
   breite = w_3;
   hoehe = w_4;

     
	if (screen.width > breite) {
	fensterhoehe = hoehe + 16;
  	fensterbreite = breite + 2;
	vhoehe = hoehe;
	vbreite = breite;
}

	if (screen.width == breite) {
	fensterhoehe = hoehe / 1.1 + 16;
      	fensterbreite = breite /1.1 + 2;
	vhoehe = hoehe / 1.1;
	vbreite = breite / 1.1;
}

	if (screen.width < breite) {
	fensterhoehe = hoehe / 1.2 + 16;
      	fensterbreite = breite / 1.2 + 2;
	vhoehe = hoehe / 1.2;
	vbreite = breite / 1.2;
}


   bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=0,resizable=1,height='+fensterhoehe+',width='+fensterbreite;
   fenster = open("","",bedingungen)
   fenster.document.open(); 
   with (fenster)
      {
      document.write('<html><head><title>' + titel + '</title></head>');
      document.write('<body style="margin-top:0; margin-bottom:0; margin-right:0; margin-left:0" bgcolor="#000000" >');
      document.write('<a href="javascript:window.close()" title="&nbsp;&nbsp;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot; ' + titel + ' &middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot; click --> close &nbsp;&nbsp;"><img src="'+ bild +'" width="'+ vbreite +'" height="'+ vhoehe +'" border="0" alt="'+ titel +'">');
      document.write('</a></body></html>');
      }
     fenster.document.close();
   }

function ZeigenV(w_1,w_2,w_3,w_4)
   {
   bild = w_1;
   titel = w_2;
   breite = w_3;
   hoehe = w_4;
   
      
      


if (screen.height >= 1000) {
	fensterhoehe = hoehe - 36;
  	fensterbreite = breite - 32;
	vhoehe = hoehe - 62 ;
	vbreite = breite - 34;
}

if (screen.height < 1000 && screen.height >= 800) {
	fensterhoehe = hoehe / 1.2;
  	fensterbreite = breite / 1.2;
	vhoehe = hoehe / 1.2 - 20 ;
	vbreite = breite / 1.2 - 4;
}

if (screen.height < 800) {
	fensterhoehe = hoehe / 1.4;
      	fensterbreite = breite / 1.4;
	vhoehe = hoehe / 1.4 - 20;
	vbreite = breite / 1.4 - 4;
}

bedingungen = 'toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,height='+fensterhoehe+',width='+fensterbreite;
   fenster = open("","",bedingungen)
   fenster.document.open(); 
   with (fenster)
      {
      document.write('<html><head><title>' + titel + '</title></head>');
      document.write('<body style="margin-top:0; margin-bottom:0; margin-right:0; margin-left:0"  bgcolor="#000000">');
      document.write('<a href="javascript:window.close()" title="&nbsp;&nbsp;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot; ' + titel + ' &middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot; click --> close &nbsp;&nbsp;"><center><img src="'+ bild +'" width="'+ vbreite +'" height="'+ vhoehe +'" border="0" alt="'+ titel+'">');
      document.write('</a></center></body></html>');
      }
   
     fenster.document.close();
   }


//-->
