function getContact() {
	if (document.getElementById("contactInfo")) {
		document.getElementById("contactInfo").style.display="block";
	}
}
var loc = window.location + "";

window.onload = function footer() {
	if (document.getElementById("footer")) {
//		document.getElementById("footer").innerHTML="This websitee is a <a href='http://www.webdevel.ca' target='new'>Web Devel Inc.</a> production";
//		document.getElementById("footer").style.display="block";
	}
	if (loc.indexOf("?form=submit") >= 0) {
		getContact();
	}
}

function submitForm() {
	window.location.href="files/QuickSiteImages/thanks.html";
}
