/* Meine Funktionsbibliothek myfunclib.js */
    
var view;		// Window Instanz
var viewproperties = "status=no,titlebar=no";

function redirect(url)
    {
    top.location=url;
    }

// Funktion um ein Bild in ein neues Fenster anzuzeigen    

function showpic(uri, titel, text, breite, hoehe)
   {
   window.status=text;
   view = window.open("about:blank", "Bild", viewproperties);
   view.resizeTo(breite+50, hoehe+150);
   view.moveTo(30, 30);
   view.document.write("<html><head><title>" + titel + "<\/title><\/head>");	
   view.document.write('<BODY BGCOLOR="#000000" TEXT="#FFFFCC" LINK="#33CCFF" VLINK="#FF6666">');
   view.document.write('<center>');
   view.document.write('<font size="+1" face="arial,helvetica"><b>' + titel + '<\/b><\/font><br>');
   view.document.write('<img src="' + uri + '"><br>');
   view.document.write('<font size="-1" face="arial,helvetica">');	
   view.document.write( text + '<br>Foto &copy; Gerard Clemens<br>');
   view.document.write('<a href="Javascript:self.close()"; onclick="opener.status=\'\'">Fenster schliessen<\/a>');
   view.document.write('<p><\/font><\/body><\/html>');
   view.document.close();	
   view.focus();
   }
    
// Farbumschlag beim Hovern eines Bildlinks   Kein Anchor!
// ClassName bezieht sich auf CSS Stylesheet newlook1.css
function hoover(wo)
    {
    wo.className='hovered';
    }
// Farbe wieder normal	
function normal(wo)
    {
    wo.className='link';
    }



//Button Gelb (Sonnenaufgang)
//function high(wo)
//    {
//    wo.className='high';
//    }

// Button wieder grau	
//function low(wo)
//    {
//    wo.className='low';
//    }

// Windows Statuszeile beschreiben
function stat(was)
    {
    window.status=was;
    }

var bildh, bildl;

bildh = new Image;
bildl = new Image;
bildh.src = "images/inhalt/butt1.bmp";
bildl.src = "images/inhalt/butt0.bmp";

var ich;
function high(was)
    {
      ich=eval(document.getElementById(was.id));
      ich.style.backgroundImage="url(" + bildh.src + ")";
      ich.style.color="#ffffff";
    }
function low(was)
    {
      ich=eval(document.getElementById(was.id));
      ich.style.backgroundImage="url(" + bildl.src + ")";
      ich.style.color="#000000";
    }
//-->
