
function MPC_sendEnquiry(theForm) {
	jQuery(theForm).children("div:first").load("/enquire.php?" + jQuery(theForm).serialize());
	return false;
}

function MPC_clearField(el, value) {
	if (el.value == value) {
		el.value = '';
		el.style.color = 'black';
	}
}
function MPC_populateField(el, value) {
	if (el.value == '') {
		el.value = value;
		el.style.color = '#999';
	}
}

