function ShowImage(Img,breite,hoehe) {
	bild = new Image();
	bild.src = Img;
	var pfad = Img.slice(9);
	var titel = pfad.slice(pfad.search(/\//)+1);	

	fenster = window.open("","","width=250,height=100,left=150,top=150")
	fenster.document.write('<html>'
	+'<head>'
	+'<title>'+titel+'</title>'
	+'<link rel="stylesheet" href="http://www.julius-ecke.de/ecke_style.css" type="text/css">'
	+'</head>'
	+'<body leftmargin="5" topmargin="5" marginwidth="5" marginheight="5" background="http://www.julius-ecke.de/bilder/bgrd.jpg">'
	+'<img name="image" src='+Img+' onLoad="self.resizeTo(document.images[0].width+35,document.images[0].height+100)"><br>'
	+'<table width="100%"><tr valign="top"><td align="left">'
	+'<font class="fusstext">&copy; Julius Ecke</font><br>'
	+'<a class="fusslink" href="http://www.julius-ecke.de/" target="_blank">http://www.julius-ecke.de</a>'
	+'</td><td align="right">'
	+'<a class="fusslink" href="javascript:self.close()">Fenster schließen</a>'
	+'</td>'
	+'</tr>'
	+'</table>'
	+'</body>'
	+'</html>'); 
	fenster.focus();
}


function restore ( name ) {
  document.images[name].src="http://www.julius-ecke.de/bilder/zeiger.gif"
}


function fenster(name) {
 window.open(name,"","width=550,height=400") ;
}

function fensterXY(name,X,Y) {
 var atr = "width="+X+",height="+Y;
 window.open(name,"",atr) ;
}

function fensterohr(name) {
 window.open(name,"","width=800,height=700") ;
}

function Go(x){
        if(x=="nothing")        {
          document.forms[0].reset();
          document.forms[0].elements[0].blur();
          return;
        }
        else{
          window.location.href=x;
          document.forms[0].reset();
          document.forms[0].elements[0].blur();
        }
}