function UnCryptMailto(s) {	//
	var n=0;
	var r="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(1));
	}
	return r;
}

function linkTo_UnCryptMailto(s)	{	//
	location.href=UnCryptMailto(s);
}
		
	function openPic(url,winName,winParams)	{	//
		var theWindow = window.open(url,winName,winParams);
		if (theWindow)	{theWindow.focus();}
	}

function _clear(){
	var text = document.getElementById('q').value;
	if (text=="Suche...") document.getElementById('q').value = "";
}
function _reset(){
	var text = document.getElementById('q').value;
	if (text=="") document.getElementById('q').value = "Suche...";
}

function _submit(){
	var text = document.getElementById('q').value;
	if (text=="Suche...") document.getElementById('q').value = "";
	if (document.getElementById('q').value==""){
		alert("Bitte geben Sie einen Suchbegriff ein!");
		_reset();
		return false;
	}
	else {
		return true;
	}
}
