/*
// File written by Jochen "Khuri" Höhmann <khuri@khuris.com>
// Copyright 2011
//
// File        : main.js
// Begin       : 2008.07.07 13:27:13
// Last Update : 2011.07.05 18:02:41
*/

/* Make mails valid links */
function convert_mail(mail) {
	window.location.href="mailto:"+decodeURIComponent(mail);
}

/* clear the searchbox */
function clearsearch(who) {
	if(searchclear != 1) {
		who.value = '';
	}
	var searchclear=1;
}
