

function showThankUmsg() {
	theDiv=document.getElementById("contactThankYou");
	theDiv.style.display="inline";
}

function hideThankYou() {
	theDiv=document.getElementById("contactThankYou");
	theDiv.style.display="none";
}