// ***************************************************************************
// Bild im grauen Frame (links) laden
// ***************************************************************************
function SetGrauImg(bild)
{
  if (typeof parent.GrauFrame == "object")
    parent.GrauFrame.document.images[0].src = bild;
}

// ***************************************************************************
// Überschrift ausgeben
// ***************************************************************************
function Ueberschrift(cText)
{
  document.write('<div style="margin-top:12; font-family: Arial, Verdana; font-size:14pt; margin-bottom:12; color:#FFFFFF;">');
  document.write('<b>');
  document.write(cText);
  document.write('</b>');
  document.write('</div>');
}
