// JavaScript-Datei
function checkSearch () {
	var wort = document.textsuche.elements["search_query"].value
	if ( wort === '' || wort == 'Suchtext eingeben') {
		alert("Bitte Suchbegriff eingeben");
		document.textsuche.elements["search_query"].focus();
		return false;
	}else{return true;}
}

function openWin(path,w,h,title) {
	if (!(w) && !(h)) {
		w = 650;
		h = 365;
	}

	if (!title) {
		popup =

window.open(path,"fenster","width="+w+",height="+h+",scrollbars=yes,resizable=yes,statusbar");
	} else {
		popup =

window.open(path,title,"width="+w+",height="+h+",scrollbars=yes,resizable=yes,statusbar");
	}
}

/* Springen an eine bestimmte Position innerhalb der Seite */
function jump(tag) {
	var url = window.location.href;
	var hash = window.location.hash;
	var newurl = url.replace(/#.*$/, '');
	newurl = newurl + "#" + tag;
	location.href = newurl;
}
