function showcontact(){

	document.getElementById("showcontact").style.display = "inline";
}

function hidecontact(){

	document.getElementById("showcontact").style.display = "none";

}