function getContactDetails(site){
	new Ajax.Updater('site-contact-details', 'contactDetails.php', {
		asynchronous: true,
		method: "get",
		parameters: "site=" + site + "&type=html",
		onLoading: function(request) {Element.show('site-progress');},
		onComplete: function(request) {Element.hide('site-progress');}
	});
}