	function upload(URL) {
		window.open(URL,'Upload','top=10, left=10, width=480, height=320,screenX=0,screenY=0,menubar=no,toolbar=no,status=no,resizable=yes, scrollbars=yes');
	}

	function editast(musid, name, email) {
		var URL = "/inc/liste_ast.php?musID="+musid+"&name="+name+"&email="+email;
		window.open(URL,'EditAustellungen','width=780,height=640,left=10,top=10,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes');
	}

	function editmusboerse() {
		var URL = "/inc/liste_musboerse.php";
		window.open(URL,"Edit_MusBoerse","width=800,height=600,left=10,top=10,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes, location=no");
	}

	function editLLL(usrID) {
		var URL = "/inc/liste_LLL.php?usrID="+usrID;
		window.open(URL,"Edit_LLL","width=800,height=600,left=10,top=10,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes, location=no");
	}

	function show(URL,w,h) {
		window.open(URL,'Show','width='+w+',height='+h+',left=10,top=10,menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes');
	}

	function showartikel(artikelid) {
		URL = '../inc/showartikel.php?ArtikelID='+artikelid;
		window.open(URL,'ShowArtikel','width=800,height=680,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}

	function moreinfo(artikelid) {
		URL = '../inc/moreinfo.php?ArtikelID='+artikelid;
		window.open(URL,'MoreInfo','width=800,height=680,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}


	function showagb() {
		URL = './inc/agb.php';
		window.open(URL,'ShowAGB','width=640,height=600,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}

	function showagb2() {
		URL = "./inc/agb_ebook.php";
		window.open(URL,"ShowAGB_Online",'width=640,height=600,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}

	function ist_suchwort() {
		var s = document.searchform.searchword.value;
		
		if( s.length < 3 ) {
			alert("Bitte mindestens 3 Zeichen eingeben!\n\nPlease type in min. 3 Chars!");
			document.searchform.searchword.focus();
			return false;
		}
	}

	// Abfrage ob das Ok ist
	function checkabfrage(text) {
		Check = confirm(text);
		if(Check == false) {
			return false;
		}else{
			return true;
		}
	}


	
