function validateForm(){
	if ($('input#txtAddress') == ''){
		return false;
	}
	else return true;
}

function errorMsg(msg){
	clearErrorMsg();
	$("div.messagingItemsContainer").show();
	$("div.boxSevereErrorText").append("<p>" + msg + "</p>");
}

function clearErrorMsg(){
	$("div.boxSevereErrorText").empty();
	$("div.messagingItemsContainer").hide();
}