/*
########################################################

linous-media | communication design & development
http://www.linous-media.de

NOTE:
This file is protected: copyright by linous | media 2008

########################################################
*/
function nospam(tS1,tS2) {
	location="mailto:"+tS1+"@"+tS2;
}
function divhref(url) {
	document.location.href = url; 
}
function displaytab(tabID){
	var tab = document.getElementById(tabID);
	if (tab.style.display == 'block') tab.style.display = 'none';
	else tab.style.display = 'block';
}

/* --- v a l i d a t i o n --- */
function validkwbform() {
	if (document.kwbform.prename.value == "") {
		alert("Geben Sie bitte Ihr Vornamen ein.");
		document.kwbform.prename.focus();
		return false;
	}
	if (document.kwbform.name.value == "") {
		alert("Geben Sie bitte Ihren Namen ein.");
		document.kwbform.name.focus();
		return false;
	}
	if (document.kwbform.email.value == "") {
		alert("Geben Sie bitte Ihre E-Mail-Adresse ein.");
		document.kwbform.email.focus();
		return false;
	}
	if (!document.kwbform.email.value.match(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/)){
		alert ("Ihre E-Mail-Adresse scheint nicht korrekt zu sein.\nGeben Sie bitte Ihre E-Mail-Adresse erneut ein.");
		document.kwbform.email.focus();
		return false;
	}
	if (document.kwbform.message.value == "") {
		alert("Geben Sie bitte Ihre Mitteilung ein.");
		document.kwbform.message.focus();
		return false;
	}else {
		document.kwbform.submit();
	}
}