// Utilities  used by this site


function goToTheURL () {
// called by a Select on City/State pages to change the page
// To add a page add a case statement below and an Option in the Select
// The value of the option must be the name of the page to go to. RL
	
	switch (document.ListOfURLs.contentSelector.value) {
	
		case "mobile-office-quote.html":
			document.location.href = "mobile-office-quote.html";
			break;

		case "modular-building-quote.html":
			document.location.href = "modular-building-quote.html";
			break;

		case "storage-container-quote.html":
			document.location.href = "storage-container-quote.html";
			break;

	}
	
}


function HideByID () {
	// document.GetStartedNowArrow.style.display = "none";
	var WhatToHide = document.getElementById('GetStartedNowArrow');
	WhatToHide.style.display = "none";
}

	