<!--
//Errors
window.onerror=fehler;
function fehler(){
return true;
}

function ImageZoom (Adresse, Zoom_width, Zoom_height) {
   Adresse=Adresse;
  if (Zoom_width) {
	   Zoom_width = ( Zoom_width >= 650 )? 700 : Zoom_width;
  }
  else
  	Zoom_width = 699;
  if (Zoom_height) {
	   Zoom_height = ( Zoom_height >= 550 )? 600 : Zoom_height;
  }
  else
   Zoom_height = 599;
   
   Zoom_scrollbars = "no"
   if (Zoom_width >= 700){
	   Zoom_width = 700;
	   Zoom_scrollbars = "yes"
	}
	if (Zoom_height >= 600){
		Zoom_height = 600;
	   Zoom_scrollbars = "yes"
	}
   Fenster1 = window.open(Adresse, "Zoom", "width=" + Zoom_width + ",height=" + Zoom_height + ",left=100,top=100, resizable=yes, scrollbars=" + Zoom_scrollbars + ", status=no, toolbar=no, menubar=no, location=no, dependent=yes");
   Fenster1.focus();
}


//-->

