		function Sicher(Frage) {
			return confirm(Frage);
		}
		
		function ZeigeFenster(Name, Skript, Breite, Hoehe) {
			window.open(Skript, Name, "width="+Breite+",height="+Hoehe+",toolbar=no, scrollbars=yes, resizable=yes");
		}
		
		function ZeigeFensterKomplett(Name, Skript, Breite, Hoehe) {
			window.open(Skript, Name, "width="+Breite+",height="+Hoehe+",menubar=yes, location=yes, toolbar=yes , scrollbars=yes, resizable=yes");
		} 
		
		function Download(URL) {
			if (URL.substring(0,1)!="/") {
				ZWindow = window.open("", "");
				ZWindow.document.location = URL;
			}
			if (URL.substring(0,1)=="/") {
				document.location = "/Skripte/Download.php?Name="+URL;
			}
		}
		
		function UebermittleDokument(Aktion, Sprache) {
			document.CMS.CMS_Aktion.value = Aktion;
			document.CMS.Sprache.value = Sprache;
			//document.CMS.onsubmit();
			document.CMS.submit();
		}
		
		function SetzeWert(Form_Element, Wert) {
			document.CMS.elements[Form_Element].value = Wert;
		}
		
					

		function printPage() {
			if (window.print) {
			jetztdrucken = confirm('Seite drucken ?');
				if (jetztdrucken) window.print();
			}
		}


			
			
			
			

