function SwitchSend(){
	if (document.getElementById){
	var sendbox = document.getElementById("send");
	if(sendbox.style.display == "block") {
		sendbox.style.display = "none";
	}
	else {
		sendbox.style.display = "block";
	}
	}
}
