// JavaScript Document
	var customPageHTML = "";
	// Function to load the custom "Coming Soon" page.
	function loadTempPage(message){

		customPageHTML = "<h1>Coming Soon</h1> \n<p>" + message + " will be available shortly. Please check back soon.</p>";
		// Add the custom message to it.
		//document.getElementById("cya-body").innerText = customPageHTML; // for IE
		//document.getElementById("cya-body").textContent = customPageHTML; // for the rest of the known world
		document.getElementById("cya-body").innerHTML = customPageHTML; // for the rest of the known world
	}
	

