﻿function getContent(page)
{
    InfoDay_Homepage.Services.ContentService.getContent(page, getContentSuccess, getContentFail);
}

function getContentSuccess(results, context, methodName) {
    var content = document.getElementById("ContentDiv");
    content.innerHTML = results;
}

function getContentFail(results, context, methodName) {
}

