﻿function SetSessionValue(strSkin) { 
    //Kosek.Web.WebService1.SetTheme(strSkin, onSuccess);
    PageMethods.SetTheme(strSkin, onSuccess);
    window.location.reload();
}

function onSuccess(result) { 
    var output = document.getElementById("palikkaloota"); 
    output.innerHTML = result; 
}
 
function onFailure(result) { 
    // context.innerText = "Error Invoking the Web Service..."; 
} 