function contact_confirm(){
	var r=confirm("Please confirm you have entered your details correctly before clicking ok."),_which;
	(r==true)?_which=true:_which=false;
	return _which;
}

window.onload = function(){
	var _obj = document.getElementById('frmEnquiry');
	_obj.onsubmit = contact_confirm;
}