function toggle(showHideDiv, switchTextDiv) {
	var ele = document.getElementById(showHideDiv);
	var text = document.getElementById(switchTextDiv);
	if(ele.style.display == "none") {
    		ele.style.display = "block";
		text.innerHTML = "<h2>Congratulations on your interest in having an RGCA golf membership<br/> included by the Seller among the amenities in your home purchase.<br/>Following are the highlights of this outstanding membership.</h2>";
  	}
	else {
		ele.style.display = "none";
		text.innerHTML = "Click here to learn more about the RGCA Golf Membership";
	}
}


