// JavaScript Document

var navactive=0;
var subnavactive=0;


function getLink(url)
{

 document.location.href=url;
}


function geturl(url)
{
  document.location.href=url;	
}


function getNavActive(id1,id2)
{
 navactive=id1;
 subnavactive=id2;
 if(id1>0 && document.getElementById("mn"+id1)!=null)
  mainnavover(id1);

 if(id2>0 && document.getElementById("sn"+id2)!=null)
  subnavover(id2);
}





function mainnavover(id)
{
 document.getElementById("mn"+id).style.color="#595959";
 document.getElementById("mn"+id).style.background='url(/cms/site/img/hg-mainnav-o.png)';

}


function mainnavout(id)
{
 if(id!=navactive) 
 {
  document.getElementById("mn"+id).style.color="#595959";
  document.getElementById("mn"+id).style.background='url(/l.gif)';
 }
}






function subnavover(id)
{
 document.getElementById("sn"+id).style.color="#595959";
 document.getElementById("sn"+id).style.background='url(/cms/site/img/hg-mainnav-o.png)';

}


function subnavout(id)
{
 if(id!=subnavactive) 
 {
  document.getElementById("sn"+id).style.color="#595959";
  document.getElementById("sn"+id).style.background='url(/l.gif)';
 }
}



function startSearch(msg)
{
 if(document.getElementById("search").value=="")
 {
  alert(msg);
  document.getElementById("search").focus();
  return false;	
 }
 else document.suche.submit();		
}
