
if (document.images) 
{
   redImage = new Image()  
   redImage.src = "pics/pfre.gif"    // butt1
   redImage2 = new Image()  
   redImage2.src = "pics/pfre.gif"    // butt2
  
}


// aktuellen Link kennzeichnen

function gewaehlt(Bild)
{
           Bild.src = redImage.src;
     
}





function setfocus() {
document.forms[0].elements[0].focus();
}

function openWindow( url, titel, w, h )
{
    var style     = "";

    style     = ",toolbar=no";
    style    += ",location=no";
    style    += ",directories=no";
    style    += ",status=no";
    style    += ",scrollbars=yes";
    style    += ",resizable=yes";
    style    += ",copyhistory=no";
    style    += ",width="+w + ",height="+h;

    var newWin     = window.open( url, titel, style );
    return newWin;
	newWin.focus();
}
