var DisplayPhones = function (response) {
	div = document.getElementById('Contact_Phones');
	//alert(response);
	//alert(div.innerHTML);
	div.innerHTML = response;
}

function GetPhones() {
	hajax('/hajax/show_phones.html', DisplayPhones, '', 'GET')
}

var DisplayEmail = function (response) {
	div = document.getElementById('Contact_Email');
	div.innerHTML = response;
}

function GetEmail() {
	hajax('/hajax/show_email.html', DisplayEmail, '', 'GET')
}