function saveFavourite(pThis, strUrl) {    $ektron.ajax({        type: "POST",        cache: false,        async: false,        url: strUrl,        success: function(msg) {            if (msg.length == 0) {                //Success                $(pThis).removeAttr('onclick');                $(pThis).html("Done");            }            else {                //Failed                alert(msg);            }        }    });    return false;}

