


function addNet(url,titel){
	if((typeof window.sidebar=="object") && (typeof window.sidebar.addPanel=="function")){
		window.sidebar.addPanel(titel,url,"");
	}
	else{alert("Sie Nutzen eine veralterte Netscape Version!\nLesezeichen hinzufügen ist nicht möglich!");
	}
}
function lesezeichen(){

	var url=window.location.href;
	t=document.title;
	ap=navigator.appName;
	
	if(ap=="Microsoft Internet Explorer"){
		window.external.AddFavorite(url,t);
	}
	else{
		if(ap=="Netscape"){
			addNet(url,t);
		}
		else{
			alert("Mit ihrem Browser ist kein Lesezeichen über Javascript möglich.\nBitte legen sie das Lesezeichnen manuel an.\nURL:"+url);
		};
	}
};

function pdfSelect(){
	for (i = 0; i < document.pdfform.pdfdownloadSelect.length; ++i){
		if (document.pdfform.pdfdownloadSelect.options[i].selected == true){
			wert = document.pdfform.pdfdownloadSelect.options[i].value;
		}
	}
	if(wert == "#"){
		document.pdfform.reset();
	}
	else{
		document.pdfform.target = "_blank";
		document.pdfform.action = wert;
	}
	
}
function pdfSelectE(){
	for (i = 0; i < document.pdfform.pdfdownloadSelect.length; ++i){
		if (document.pdfform.pdfdownloadSelect.options[i].selected == true){
			wert = document.pdfform.pdfdownloadSelect.options[i].value;
		}
	}
	if(wert == "#"){
		document.pdfform.reset();
	}
	else{
		document.pdfform.action="download_e.php?download=" + wert;
		document.pdfform.submit();
	}
	
}
