// JavaScript Document
function start_search(){
	var begriff = window.document.forms['quicksearchform'].keywords.value;
	if (begriff.length < 3) alert('Suche ist zu kurz. Bitte geben Sie mindestens 3 Zeichen ein.');
	else gopg("",begriff);
}

function gopg(nr,begriff,buchstabe){
	if (begriff=="" || typeof(begriff)=="undefined") begriff=document.forms['quicksearchform'].keywords.value;
	if (nr=="" || typeof(nr)=="undefined") nr=0;
	if (buchstabe=="" || typeof(buchstabe)=="undefined") buchstabe=document.forms['quicksearchform'].buchstabe.value;
	//alert(document.forms['quicksearchform'].buchstabe.value);
	location.href="search.php?q="+begriff+"&pg="+nr+"&let="+buchstabe;
}

function se(let){
	var Let=let.toUpperCase(); 
	document.quicksearchform.buchstabe.value=Let;
	Let="left_"+Let+".html";
	window.frames['left'].location.href=Let;
}
