﻿function GetRenderer() {
    var o = $.ajax({
        type: "POST",
        url: "/Services/WDS.asmx/GetChosenRenderer",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json"
    });

    return o;
};


function SetRenderer(renderType, url) {
    
    var o = $.ajax({
        type: "POST",
        url: "/Services/WDS.asmx/SetChosenRenderer",
        data: "{ renderer:'" + renderType + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success:  function(msg){
            if(renderType == "mobile") {
                window.location = url;
            };
        }
    });

}
