// 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 "residential-generator-quote.html":
			document.location.href = "residential-generator-quote.html";
			break;

		case "commercial-generator-quote.html":
			document.location.href = "commercial-generator-quote.html";
			break;

	}
	
}
