// JavaScript Document
function swap() {
	var status = document.getElementById("liefer").style.display;
		if (status == "none") {
				document.getElementById("liefer").style.display = "inline";
		} else {
				document.getElementById("liefer").style.display = "none";
		}		
}

function showline(id) {
	document.getElementById(id).style.textDecoration = "underline";
}

function hideline(id) {
	document.getElementById(id).style.textDecoration = "none";	
}

function sendMail(user, url) {
	var mail = user+"@"+url;
	document.location.href="mailto: " +mail;
}

function checkForm1(form) {
	
}