function get_intake_form(){
	document.getElementById("intake_form_container").style.display = "block";
	window.location = '#intake_form';
	//goToBottom();
}
function goToBottom(){
	window.scrollBy(0,10);
	scrolldelay = setTimeout('goToBottom()',10); 
}
function stopScroll() {
	//clearTimeout(scrolldelay);
	window.location = '#';
	document.getElementById("intake_form_container").style.display = "none";
}
function show_message(str_msg){
	//alert(str_msg);
	document.getElementById("form_message").style.display = "block";
	document.getElementById("form_message").innerHTML = str_msg;
}
