// maitag-webpraesentation: Javascript-Functions  --------------------------------------------coded by sylvio sell
//    Copyright Sylvio Sell - maitag
//    visit us at http://www.maitag.de
//    All rights reserved. Alle Rechte vorbehalten.
//    Fertigstellung: 15.03.2004
//    last update:    16.03.2004 (Sylvio Sell)

// *******************************************************************************************************************************
// ******************************** F U N K T I O N E N **************************************************************************
// *******************************************************************************************************************************
function farbe(f,max)
{if (document.getElementById("f1"))
 {var jetzt = new Date();
  var Std = jetzt.getHours();
 
  if (Std >=9 && Std < 16)
  {
   var elem="";
   for (var i=1; i<=max; i++)
   {elem="f"+i;
    if (document.getElementById(elem)) document.getElementById(elem).bgColor = f;
   }
   document.getElementById("logo").src = "../images/logorot.png";
   if (document.getElementById("login")) document.getElementById("login").src = "../images/loginrot.png";
   if (document.getElementById("logino")) document.getElementById("logino").src = "../images/ologinrot.png";
   if (document.getElementById("loginu")) document.getElementById("loginu").src = "../images/uloginrot.png";
  }
 }
}

function fenster(u,n,w,h,x,y)
{ F1 = open(u,n,"width="+w+",height="+h+",screenX="+x+",screenY="+y+",resizable=no,status=yes");
   F1.focus();
}
