var sendPhoneNumber = {
	New : function(){
		$('message').innerHTML = '';
		var url = '/secure/assets/contactpopup/contact.php?';
		var pars = $('contactform').serialize()
		new Ajax.Request(url, {method: 'post', parameters: pars,
			onComplete: function(transport) {
			if(transport.responseText.length < 100){
				//Failure - Add the error message to the message box
				new Insertion.Top('message',transport.responseText);
			}else{
				//Success - Replace all the content of the widows with the proper message
				$('contact').innerHTML = '';
				new Insertion.Top('contact',transport.responseText);
			};
			}
		});
	}
}


