function SwitchAppForm(){
	if (document.getElementById){
	var formbox = document.getElementById("appform");
	if(formbox.style.display == "block") {
		formbox.style.display = "none";
	}
	else {
		formbox.style.display = "block";
	}
	}
}
function SwitchGetStarted(){
	if (document.getElementById){
	var sendbox = document.getElementById("getstarted");
	if(sendbox.style.display == "block") {
		sendbox.style.display = "none";
	}
	else {
		sendbox.style.display = "block";
	}
	}
}
