The JavaScript function provided:
function ShowFax() {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "WebServices/SendFaxService.asmx/SaveFaxData",
data: "{}",
dataType: "json",
success: function (data) {
$('#<%=cSendFax.FindControl("dDIVFax").ClientID %>').show();
},
error: function (result) {
alert("Error");
}
});
}
Should be included as a parameter in the event handler constructor below:
Navigation.PHQ2_SendFax += new Navigation.CommunicationsEventHandler();