//Set quickcontact form 'pagetitle' field to match page title

function checktitle() {
	if (document.getElementById('quickcontact'))
		return;
var pageTitle = document.title;
var pageLocation = window.self.location;
document.forms["quickcontact"].sent_from_PageTitle.value = pageTitle;
document.forms["quickcontact"].sent_from_PageLocation.value = pageLocation;
}