// JavaScript Document

function Lesezeichen02(url,title)
{

 if( window.external && document.all)
 {
 // IE Favoritenliste
 window.external.AddFavorite( url, title);
 }
 else if(window.sidebar)
 {
 // Mozilla Firefox Bookmarks
 window.sidebar.addPanel(title, url,"");
 }
 else if(window.opera && window.print)
 {
 // Opera Hotlist
 return true;
 }

}



function setBorder(name,act_i,total)
{
	for(var i=0;i<total;i++)
	{
		if(i==act_i)
		{
			document.getElementById(name+i).style.borderColor='#e6120e';
			document.getElementById(name+i).style.color='#e6120e';
			document.getElementById(name+i).style.borderWidth='3px';
			document.getElementById(name+i).style.marginRight='3px';
			document.getElementById(name+i).style.marginBottom='3px';
			document.getElementById(name+i).style.marginTop='-7px';
			document.getElementById(name+i).style.marginLeft='-2px';
		}
		else
		{
			document.getElementById(name+i).style.borderColor='';
			document.getElementById(name+i).style.color='';
			document.getElementById(name+i).style.borderWidth='';
			document.getElementById(name+i).style.marginRight='';
			document.getElementById(name+i).style.marginBottom='';
			document.getElementById(name+i).style.marginTop='';
			document.getElementById(name+i).style.marginLeft='';
		}
	}
}

