﻿// bride.ca | Common JS functions

function hideDivByID(ID) {
	var theDiv = document.getElementById(ID);
	theDiv.style.display = "none";
}