var submitForm = function(){
	if ($F('suche').empty()) alert('Fehler! Suchfeld ist leer.');
	else {
			//var sword = ($F('type')=='u') ? encodeURIComponent(encodeURIComponent($F('suche').strip().replace(/ /g, "+"))) : encodeURIComponent($F('suche').strip().replace(/ /g, "+"));
			
			var sword = ($F('type')=='u') ? encodeURIComponent(encodeURIComponent($F('suche').strip().replace(/ /g, "+"))) : escape(escape($F('suche').strip().replace(/ /g, "+")));
			
			location.href=ABS_PATH+'overview'+$F('type')+'/'+sword+'.html';
	}
}

var onchange_type = function(value){

	if ($F('suche').empty() && value=='u') 
		$('suche').value='http://';
		
	if ($F('suche')=='http://' && value!='u') 
		$('suche').value='';
		
	$('suche').focus();
}

var submit_it = function(s, t){
		if((G_priv.indexOf(3)<0 && G_priv.indexOf(1)<0) && t=='u') {
			return false;
		}
		if((G_priv.indexOf(2)<0 && G_priv.indexOf(1)<0) && t=='p') {
			return false;
		}
		$('suche').value=s;
		$('type').value=t;
		submitForm();
}
