function toggleContent(id){
	var content = document.getElementById(id).style;
	content.display = content.display? "":"block";
}

// Check if brochure request form has been submitted
window.onload = function(){
	var url = window.location.toString();
	if(url.indexOf("?action=sent")!=-1)
		document.getElementById("brochure-req").style.display = "block";
}

function toggleMainContent(id){
	if(document.getElementById(id).className == "hidden")
		document.getElementById(id).className = "visible";
	else
		document.getElementById(id).className = "hidden";
}
