if (!document.layers){ 
	Width=10; 
	Font='Verdana'; 
	FontSize=10; 
	FontColorNormal='#FFFFFF'; 
	FontColorOver='#DDDDDD'; 
	FontColorDown='#DDDDDD'; 
	FontWeight='bold'; 
	BackGroundNormal='#A60D0F'; 
	BackGroundDark='#A60D0F';
	BackGroundOver='#A60D0F';
	BackGroundDown='#A60D0F';
	BorderDepth=1; 
	
	function Over(id){ 
		with(id.style){ 
			color=FontColorOver;
			background=BackGroundOver; 
		} 
	} 
			
	function Normal(id){ 
		with(id.style){ 
			color=FontColorNormal;
			background=BackGroundNormal; 
		} 
	} 
	
	function Down(id){ 
		with(id.style){ 
			color=FontColorDown; 
			background=BackGroundDown; 
		} 
	} 
		
	function Link(Url,Txt,Target){ 
		document.write("<a href='"+Url+"' target='"+Target+"'>" 
		+"<div style='position:relative;" 
		+"height:"+FontSize+"px;" 
		+"border: 1px solid #C5D2DA;"
		+"background:"+BackGroundNormal+";" 
		+"font-family:"+Font+";" 
		+"font-size:"+FontSize+"px;" 
		+"font-weight:"+FontWeight+";" 
		+"text-align: center;" 
		+"color:"+FontColorNormal+";" 
		+"cursor:hand'" 
		+"onMouseOver='javascript:Over(this)'" 
		+"onMouseOut='javascript:Normal(this)'" 
		+"onMouseDown='javascript:Down(this)'>" 
		+"<img src='/images/button/button_dreieck.gif' width='8' height='13'  align='absmiddle' border='0'>"
		+"<img src='/images/space.gif' width='2' height='1'  align='absmiddle'  border='0'>"
		+Txt
		+"<img src='/images/space.gif' width='30' height='1'  align='absmiddle'  border='0'>"
		+"<img src='/images/button/button_balken.gif' width='18' height='13' align='absmiddle'  border='0'>"
		+"</div></a>"); 
	} 
	
	function LinkLang(Url,Txt,Target){ 
		document.write("<a href='"+Url+"' target='"+Target+"'>" 
		+"<div style='position:relative;" 
		+"height:"+FontSize+"px;" 
		+"border: 1px solid #C5D2DA;"
		+"background:"+BackGroundNormal+";" 
		+"font-family:"+Font+";" 
		+"font-size:"+FontSize+"px;" 
		+"font-weight:"+FontWeight+";" 
		+"text-align: center;" 
		+"color:"+FontColorNormal+";" 
		+"cursor:hand'" 
		+"onMouseOver='javascript:Over(this)'" 
		+"onMouseOut='javascript:Normal(this)'" 
		+"onMouseDown='javascript:Down(this)'>" 
		+"<img src='/images/button/button_dreieck.gif' width='8' height='13'  align='absmiddle' border='0'>"
		+"<img src='/images/space.gif' width='2' height='1'  align='absmiddle' border='0'>"
		+Txt
		+"<img src='/images/space.gif' width='5' height='1'  align='absmiddle' border='0'>"
		+"<img src='/images/button/button_balken.gif' width='18' height='13' align='absmiddle' border='0'>"
		+"</div></a>"); 
	} 
} 


