<!--
function bbcodes()
{
  var win;
  win = window.open("bbcodes.php", "bbcodes", "toolbar=no,width=540, height=300, directories=no, status=no, scrollbars=yes, resize=no, menubar=no");
}

var Titel, Picture, Breit, Hoch;
function fullScreen(Titel,Picture,Breit,Hoch)
{
var xsize = Breit+50;// Zusatz für Rand rechts und links
var ysize = Hoch+120; //Zusatz für Rand oben und unten - damit Button angezeigt werden kann

var ScreenWidth = screen.width;
var ScreenHeight = screen.height;

var xpos = (ScreenWidth/2)-(xsize/2);
var ypos = (ScreenHeight/2)-(ysize/2);

        NewWindow=window.open("Titel","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");

        NewWindow.document.write ("<html><head><title>");
		NewWindow.document.write (Titel);
        NewWindow.document.write ("</title></head>");
                     NewWindow.document.write ("<body bgcolor='#fffacd' onload='focus()'>");
        //NewWindow.document.write ("<body bgcolor='#cccccc'>");
        NewWindow.document.write ("<table align='center'><tr>");
        NewWindow.document.write ("<td align='center' valign='top'>");
        NewWindow.document.write ("<table border='1' bgcolor='#fffacd' cellpadding='0' cellspacing='1'><tr><td align='center'>");
        NewWindow.document.write ("<img src=");
        NewWindow.document.write (Picture);
        NewWindow.document.write (">");
        NewWindow.document.write ("</tr></table>");
        NewWindow.document.write ("</td></tr><tr>");
        NewWindow.document.write ("<td align='center' valign='bottom'>");
        NewWindow.document.write ("<br><center><form><input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
        NewWindow.document.write ("</td></tr></table>");
        NewWindow.document.write ("</form></body></html>");
        NewWindow.document.close();
                     NewWindow.resizeTo(xsize,ysize);
}

  tooltipp                                              = null;
  document.onmousemove                                  = updateMousePos;
  
  function displayToolTip(id) {
    tooltipp                                            = document.getElementById(id);
    tooltipp.style.display                              = "block"
  }
  
  function hideToolTip() {
    tooltipp.style.display                              = "none";
  }
  
  function updateMousePos(src) {
  	x = (document.all) ? window.event.x + document.body.scrollLeft : src.pageX;
  	y = (document.all) ? window.event.y + document.body.scrollTop  : src.pageY;
  	if (tooltipp != null) {
  		tooltipp.style.left                               = (x + 15) + "px";
  		tooltipp.style.top                                = (y + 15) + "px";
  	}
  }
-->