function selectContent(c)
{
	//alert(c);
	for (i = 0; i <= 10; i++)
	{
		e = document.getElementById("content" + i);
		d = document.getElementById("contenttab" + i);
		if (e)
			e.style.display = ((i == c) ? "block" : "none");
		//else 
			//break;
		if (d) 
		{
			d.style.backgroundImage = ((i == c) ? "url('../img/tab1.gif')" : "url('../img/tab2.gif')");
			d.style.fontWeight = ((i == c) ? "bold" : "normal");
            d.style.color = ((i == c) ? "white" : "#606060");
		}
	}
}

var URL = 'http://www.brandschutztechnik-roth.de';
var Text = 'Roth Brandschutztechnik';


function bookmark(){

  if (window.sidebar)
    {
    // firefox
    window.sidebar.addPanel(Text,URL, "");
    }
  else if(window.opera && window.print)
    {
    // opera
    var elem = document.createElement('a');
    elem.setAttribute('href',URL);
    elem.setAttribute('title',Text);
    elem.setAttribute('rel','sidebar');
    elem.click();
    }
  else if(document.all)
    {
    // ie
    window.external.AddFavorite(URL,Text);
    }
}

