﻿
function Increment(formType, inc) {
    /* increment = $("#Increment").val();*/

    goTo(0, inc, formType);
    clearResults();
}

function goTo(start, increment, formType) {
    
    var formData;
    formData = { type: 1,
                start: start,
                increment: increment
               };

               $.post("/Media-Center/Video-Center/Page", formData,
                    function(data) {
                    $("#Video_List").html(data);
                    }
                    , "html");
                    return false;                   
}
        
