/********************************************************************
*  generated by H2G Internetagentur, CH-Aarau, www.h2g.ch, april06  *
********************************************************************/

var cache;
				
function enterform(id) {
	id.style.background = "#DCE8ED";
	id.style.color = "#C30E14";
	
	if (id.value == "" || id.value == "Name" || id.value == "Unternehmen" || id.value == "Telefon" || id.value == "E-Mail" || id.value == "Mitteilung" ) {
		cache = id.value;
		id.value = "";
	}
}
				
function leaveform(id) {
	id.style.background = "#FFFFFF";
	if (id.value == "") {
		id.value = cache;
	}
}


function checkForm() {
	var error = 0;
	if (document.kontakt.name.value == "" || document.kontakt.name.value == "Name") {
		document.kontakt.name.className = 'input_error';
		error = 1;
	} else {
		document.kontakt.name.style.background = '#FFFFFF';
		document.kontakt.name.style.color = '#C30E14';
	}
	
	if (document.kontakt.unternehmen.value == "" || document.kontakt.unternehmen.value == "Unternehmen") {
		document.kontakt.unternehmen.className = 'input_error';
		error = 1;
	} else {
		document.kontakt.unternehmen.style.background = '#FFFFFF';
		document.kontakt.unternehmen.style.color = '#C30E14';
	}
	
	if (document.kontakt.email.value == "" || document.kontakt.email.value == "E-Mail") {
		document.kontakt.email.className = 'input_error';
		error = 1;
	} else {
		document.kontakt.email.style.background = '#FFFFFF';
		document.kontakt.email.style.color = '#C30E14';
	}
	
	if (document.kontakt.telefon.value == "" || document.kontakt.telefon.value == "Telefon") {
		document.kontakt.telefon.className = 'input_error';
		error = 1;
	} else {
		document.kontakt.telefon.style.background = '#FFFFFF';
		document.kontakt.telefon.style.color = '#C30E14';
	}
	
	if (document.kontakt.mitteilung.value == "" || document.kontakt.mitteilung.value == "Mitteilung") {
		document.kontakt.mitteilung.className = 'input_error';
		error = 1;
	} else {
		document.kontakt.mitteilung.style.background = '#FFFFFF';
		document.kontakt.mitteilung.style.color = '#C30E14';
	}
	
	if (error == 1) {
		return false;
	} else {
		return true;
	}
}