// JavaScript Document
function ShowBrochure(){
	hp = document.getElementById("brochure_popup");
	hp.style.visibility = "visible";
	}

function HideBrochure(){	
	hp = document.getElementById("brochure_popup");
	hp.style.visibility = "hidden";
	}
	
function ShowMap(){
	hp = document.getElementById("map_popup");
	hp.style.visibility = "visible";
	}

function HideMap(){	
	hp = document.getElementById("map_popup");
	hp.style.visibility = "hidden";
	}
	
function ShowCont(){
	hp = document.getElementById("contact_popup");
	hp.style.visibility = "visible";
	}

function HideCont(){	
	hp = document.getElementById("contact_popup");
	hp.style.visibility = "hidden";
	}
