function chImg(imgName, imgSrc) 
{
  if (window.document.images)
  {if (imgSrc != "none")
    {window.document.images[imgName].src = imgSrc;
}}}

function ZweiFrames(URI1,F1,URI2,F2) {
  Frame1=eval("parent."+F1);
  Frame2=eval("parent."+F2);
  Frame1.location.href = URI1;
  Frame2.location.href = URI2;
}

function HideLinkFocus()
{
  if(document.all)
  {
    for (var i = 0; i < document.links.length; i++)
     document.links[i].hideFocus = true;
  }
}

function printWindow()
{
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

function hovTD(spalte) {
 if (document.getElementById) {
  document.getElementById(spalte).style.backgroundColor = '#FFF06D';
}}
	
function outTD(spalte) {
 if (document.getElementById) {
  document.getElementById(spalte).style.backgroundColor = '#DAD8D8';
}}