/*
	Javascript base.js
	Homepage Klingerbauer
	(c) 2004 Maria Sillinger, Reinhard Lienbacher, Gottfried Bergmair
*/

/*
	Frame Inhalte umschalten...
*/
function SetMainTargets(URITop, URIMain) {
  parent.topFrame.location.href = URITop;
  parent.mainFrame.location.href = URIMain;
}

/*
	Navigation...
*/
function navigSelect(elem) {
   elem.className = "navigTextSelect";
}
function navigNormal(elem) {
   elem.className = "navigTextNormal";
}

/*
	Diverse Frame Routinen...
*/
function checkFrames(what)
{
   // Frameset fuer diese Seite erzwingen 
   //
   if (what = "FRAMESET")
   {
      if (self == top)
      {
         top.location.href = 'index.htm';
      }
   }
   // Aktuelle Seite als TOP erzwingen
   //
   else if (what = "TOP")
   {
      if (self != top)
      {
         top.location.href = self.location.href;
      }
   }
}