// JavaScript Document
function addUnderline(event){
	var oDiv = document.getElementById("prompt");
	oDiv.style.display = "inline";
	oDiv.style.top = "-40px";
	oDiv.style.left = "100px";
	
	var oEmail = document.getElementById("email");
	oEmail.style.textDecoration = "underline";
}
function removeUnderline(event){
	var oDiv = document.getElementById("prompt");
		oDiv.style.display = "none";

	var oEmail = document.getElementById("email");
	oEmail.style.textDecoration = "none";
}
