function ShowContact(){
	location.href="#";
    document.getElementById("contact_page").style.display="";
	document.getElementById("flash_menu").style.display="none";
}
function HideContact(){
    document.getElementById("contact_page").style.display="none";
	document.getElementById("flash_menu").style.display="";
}
function ClearContactForm(){
	document.getElementById("formContact").reset();
}
function SendContactForm(){
	document.getElementById("formContact").submit();
}