// OnmouseOver-Effekt 

var out="";
var limg="";

function off() {
  if (out=="") { return; }

  if (document.images) {
    document.images[limg].src=out;
    out="";
  }
}

function on(img,o1,o2) {
  if (document.images) {

  if (out != "") { off(); }

    document.images[img].src=o1;
    out=o2;
    limg=img;
  }
}


// Öffnet PopUp-Fenster

function openWindow(filename) 
{
	{
	window.open(filename,"LZ","toolbar=no,width=600,height=500,directories=no,status=no,scrollbars=yes,resize=yes,menubar=no")
	}
} 

// Öffnet PopUp-Fenster2

function openWindowd(filename) 
{
	{
	window.open(filename,"LZ","toolbar=no,width=720,height=326,directories=no,status=no,scrollbars=no,resize=yes,menubar=no")
	}
}


// Schließt PopUp-Fenster

function closewindow()
{
	window.close();
}


// PopUp-Fenster mit definierter Hoehe, Breite und vorgegebener Position

function partnerwindow(ort,w,h) 

{

  win = window.open(ort, 'Neues_Fenster', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,width='+w+',height='+h+',screenX=20,screenY=150,left=20,top=150');

  win.focus();

}