function ajaxLink(url, update){
    $.ajax({
        type: "GET",
        url: ""+url+"",
        success: function(result){
            $('#'+update).html(result);
        },
        error: function(){
            $('#'+update).html('<span class="error">Error Occured</span>');
        }
    });
}

function ajaxForm(url, dataString, update){
    $.ajax({
        type: "GET",
        url: ""+url+"",
        data: dataString,
        success: function(result){
            $('#'+update).html(result);
        },
        error: function(){
            $('#'+update).html('<span class="error">Error Occured</span>');
        }
    });
}

function ajaxData(url, update){
    $.ajax({
        type: "GET",
        url: ""+url+"",
        success: function(result){
            $('#'+update).html(result);
        },
        error: function(){
            $('#'+update).html('<span class="error">Error Occured</span>');
        }
    });
}
