function showContent(thisPage)
	{
		DWREngine._execute(_cfscriptLocation, null, 'getContent', thisPage, resultPage);
	}

function resultPage(contentResult)
	{
		document.getElementById("content").innerHTML = contentResult;
	}
	
function submitContact()
	{
		var contactName = document.getElementById("ContactName").value
		var contactEMail = document.getElementById("ContactEMail").value
		var contactMSG = document.getElementById("ContactMSG").value

		DWREngine._execute(_cfscriptLocation,null,'submitContact',contactName,contactEMail,contactMSG,getResult);

		// return a message to the user
		document.getElementById("div_msg").innerHTML = 'Thank you, your message has been submitted.';

		// clear all form variables
		document.getElementById("ContactName").value = '';
		document.getElementById("ContactEMail").value = '';
		document.getElementById("ContactMSG").value = '';
	}




