/*HAP.Web.JS.js - Copyright © 2012 nb development - Version 4 */if (hap == null) { var hap = {  root: "/hap/",  user: "",  admin: false,  bsadmin: false,  hdadmin: false,  errorTimeout: null,  common: {   jsonError: function (xhr, ajaxOptions, thrownError) {    try {     if (xhr.responseText.match(/\<!doctype html/gi)) window.location.reload();     else {      if (jQuery.parseJSON(xhr.responseText).Message == "Length of the data to decrypt is invalid." || jQuery.parseJSON(xhr.responseText).Message == "Invalid length for a Base-64 char array.") hap.help.Load("impmsg");      else {       if (document.getElementById("errorlist") == null) $("#hapContent").append('<div id="errorlist"></div>');       $("<div class=\"ui-state-error ui-corner-all\" style=\"padding: 3px 10px 3px 10px\"><span class=\"ui-icon ui-icon-alert\" style=\"float: left; margin-right: 5px; margin-top: 2px;\"></span><a href=\"#\" onclick=\"this.nextSibling.className = (this.nextSibling.className == 'cont') ? '' : 'cont'; return false;\">" + jQuery.parseJSON(xhr.responseText).Message + "</a><div class=\"cont\">This error has been logged on the server's event log</div></div>").appendTo("#errorlist");       if (hap.errorTimeout == null) hap.errorTimeout = setTimeout("hap.common.clearError();", 10000);       try { console.log(xhr.responseText); } catch (ex) { };      }     }    } catch (e) { if (thrownError != "") alert(thrownError); }   },   formatJSONUrl: function (url) {    var d = new Date().valueOf();    return hap.common.resolveUrl(url) + '?' + d;   },   clearError: function () {    $($("#errorlist").children()[0]).animate({ height: 0 }, 300, function () { $($("#errorlist").children()[0]).remove(); });    if ($("#errorlist").children().length > 0) hap.errorTimeout = setTimeout("hap.common.clearError();", 10000);    else hap.errorTimeout = null;   },   resolveUrl: function (virtual) {    return virtual.replace(/~\//g, hap.root);   },   keepAlive: function () {    setInterval(function () {     $.ajax({      url: hap.common.formatJSONUrl("~/api/test/"), type: 'GET', success: function (data) {      }, error: hap.common.jsonError     });    }, 60000);   },   getLocal: function (e) {    for (var i = 0; i < hap.localization.length; i++)     if (hap.localization[i].name == e) return unescape(hap.localization[i].value.replace(/\\\\/g, "\\"));   },   makeSwitchs: function () {    var e = $("input[type='checkbox']");    for (var i = 0; i < e.length; i++) {     var o = $(e[i]);     if (o.hasClass("noswitch")) continue;     if (o.hasClass("hapswitch")) continue;     o.before('<span class="hapswitch" data-for="' + o.attr("id") + '"><span></span><i></i></span>');     o.addClass("hapswitch").change(function () {      $(this).prev().removeClass("on").addClass($(this).is(":checked") ? 'on' : '');     }).prev().click(function () {      $(this).next().prop("checked", $(this).next().is(":checked") ? false : true);      $(this).removeClass("on").addClass($(this).next().is(":checked") ? 'on' : '');     });     if (o.is(":checked")) o.prev().addClass('on');    }   }  },  header: {   StopClose: false,   StopUClose: false,   WaitInit: false,   Init: function () {    if (window.location.pathname.toLowerCase() != hap.root.toLowerCase() && window.location.pathname.toLowerCase() != hap.common.resolveUrl('~/login.aspx').toLowerCase() && window.location.pathname.toLowerCase() != hap.common.resolveUrl('~/kerberos.aspx').toLowerCase()) {     $("#hapTitleMore").click(function () { return false; });     $.ajax({      url: hap.common.formatJSONUrl('~/api/livetiles/'), type: 'GET', dataType: "json", contentType: 'application/JSON', success: function (data) {       $("#hapContent").click(function () { if ($("#hapHeaderMore").css('display') == 'block' && !hap.header.StopClose) $("#hapHeaderMore").animate({ height: 'toggle' }); hap.header.StopClose = false; }).append('<div id="hapHeaderMore" class="tile-color"><div class="tiles"></div></div>');       $("#hapHeaderMore").click(function () { hap.header.StopClose = true; }).mouseleave(function () { if (!hap.header.WaitInit) $("#hapHeaderMore").animate({ height: 'toggle' }); });       $("#hapTitleMore").click(function () { hap.header.WaitInit = true; $("#hapHeaderMore").animate({ height: 'toggle' }, 500, 'linear', function () { hap.header.WaitInit = false; }); return false; }).trigger("click");       for (var i = 0; i < data.length; i++) {        if (data[i].Group == 'Me') continue;        var s = "<div>" + unescape(data[i].GroupName) + "<div>";        if (i == 0) s += '<a href="' + hap.common.resolveUrl("~/") + '" title="' + hap.common.getLocal("homeaccessplus") + " " + hap.common.getLocal("home") + '" style="background-image: url(' + hap.common.resolveUrl("~/images/icons/metro/hap-logo-64.png") + ');">' + hap.common.getLocal("home") + '</a>';        for (var i2 = 0; i2 < data[i].Tiles.length; i2++) {         if (data[i].Tiles[i2].Url.substr(0, 1) != "#")          s += '<a href="' + hap.common.resolveUrl(data[i].Tiles[i2].Url) + '" style="' + (data[i].Tiles[i2].Icon == "" ? "" : 'background-image: url(' + hap.common.resolveUrl(data[i].Tiles[i2].Icon) + '); ') + (data[i].Tiles[i2].Color.substr(0, 1) == " " ? ('background-color: ' + $.parseJSON(data[i].Tiles[i2].Color).Base + ';" onmouseout="this.style.backgroundColor = \'' + $.parseJSON(data[i].Tiles[i2].Color).Base + '\';" onmouseover="this.style.backgroundColor = \'' + $.parseJSON(data[i].Tiles[i2].Color).Light + '\';" onmousedown="this.style.backgroundColor = \'' + $.parseJSON(data[i].Tiles[i2].Color).Dark + '\';"') : '"') + (data[i].Tiles[i2].Target == "" ? "" : ' target="' + data[i].Tiles[i2].Target + '"') + ' title="' + data[i].Tiles[i2].Description + '">' + data[i].Tiles[i2].Name + '</a>';        }        s += "</div></div>";        $("#hapHeaderMore > .tiles").append(s);       }      }, error: hap.common.jsonError     });     $("#hapTitleMore").attr("title", hap.common.getLocal("more"));     $("#hapHeader").css('right', $("#hapUserTitle").width() + 30 + 'px');    } else {     $("#hapHeader").hide();    }    $("#hapUserTitle").click(function () { $("#hapUserMenu").animate({ height: 'toggle' }); return false; }).trigger("click");    $("#hapUserMenu").click(function () { hap.header.StopUClose = true; });    $("#hapContent").click(function () { if (!hap.header.StopUClose && $("#hapUserMenu").css('display') == 'block') $("#hapUserMenu").animate({ height: 'toggle' }); hap.header.StopUClose = false; });   }  },  loadtypes : {   none: 0,   help: 1,   full: 2  },  load: 2,  help: {   Init: function () {    if (document.getElementById("helpbox") != null) return;    $('<div id="helpbox" title="Help"><div class="content">Loading</div></div>').appendTo(document.body);    $("#helpbox").dialog({ autoOpen: false });   },   Load: function (path) {    $("#helpbox").dialog({ autoOpen: true, modal: false, height: 600, width: 990, buttons: { "Close": function () { $(this).dialog("close"); } } });    $("#helpbox .content").html("Loading...");    $.ajax({     type: 'GET',     url: hap.common.resolveUrl('~/api/Help/' + path),     dataType: 'json',     contentType: 'application/json',     success: function (data) {      $("#helpbox .content").html(data);      $("#helpbox .content button").button();     },     error: hap.common.jsonError    });   }  },  localization: [{ name: 'homeaccessplus', value: 'OSB Cloud' }, { name: 'home', value: 'Home' }, { name: 'editprofile', value: 'Bekijk Profiel' }, { name: 'loading', value: 'Loading' }, { name: 'help', value: 'Help' }, { name: 'more', value: 'More' }, { name: 'name', value: 'Name' }, { name: 'autologon', value: 'About Auto Logon' }, { name: 'of', value: 'of' }, { name: 'to', value: 'to' }, { name: 'from', value: 'from' }, { name: 'items', value: 'items' }, { name: 'username', value: 'Username' }, { name: 'close', value: 'Close' }, { name: 'openmenu', value: 'Open Menu' }, { name: 'search', value: 'Search' }, { name: 'password', value: 'Password' }, { name: 'errordetails', value: 'Error Details' }, { name: 'bookingsystem/bookingsystem', value: 'Booking System' }, { name: 'bookingsystem/quicksearch', value: 'Search for: ' }, { name: 'bookingsystem/nodisclaimer', value: 'You need to agree to the resource disclaimer' }, { name: 'timetable/my', value: 'My Timetable' }, { name: 'helpdesk/archivedtickets', value: 'Archived Tickets' }, { name: 'helpdesk/archivetickets', value: 'Archive Tickets' }, { name: 'helpdesk/selectarchive', value: 'Select an Archive' }, { name: 'helpdesk/assignticket', value: 'Ticket (#) has been Assigned To You' }, { name: 'helpdesk/ticketupdated', value: 'Ticket (#) has been Updated' }, { name: 'helpdesk/tickedhasbeen', value: 'Your Ticket (#) has been %' }, { name: 'helpdesk/ticketcreated', value: 'A Ticket (#) has been Created' }, { name: 'helpdesk/ticketlogged', value: 'A Support Ticket (#) has been Logged' }, { name: 'helpdesk/daystoindex', value: 'Days to Index' }, { name: 'helpdesk/refreshstats', value: 'Refresh Stats' }, { name: 'helpdesk/stats', value: 'Stats' }, { name: 'helpdesk/helpdesk', value: 'Help Desk' }, { name: 'helpdesk/priority', value: 'Priority' }, { name: 'helpdesk/high', value: 'High' }, { name: 'helpdesk/low', value: 'Low' }, { name: 'helpdesk/updated', value: 'Updated' }, { name: 'helpdesk/normal', value: 'Normal' }, { name: 'helpdesk/fixed', value: 'Fixed' }, { name: 'helpdesk/closed', value: 'Closed' }, { name: 'helpdesk/opened', value: 'Opened' }, { name: 'helpdesk/reopened', value: 'Reopened' }, { name: 'helpdesk/update', value: 'Update' }, { name: 'helpdesk/reopen', value: 'Reopen' }, { name: 'helpdesk/makeaware', value: 'Make aware' }, { name: 'helpdesk/csloun', value: '(comma seperated list of usernames)' }, { name: 'helpdesk/markasfaq', value: 'Mark as FAQ' }, { name: 'helpdesk/fixed', value: 'Fixed' }, { name: 'helpdesk/note', value: 'Note' }, { name: 'helpdesk/faqs', value: 'FAQs' }, { name: 'helpdesk/opentickets', value: 'Open Tickets' }, { name: 'helpdesk/newtickets', value: 'New Ticket' }, { name: 'helpdesk/closedtickets', value: 'Closed Tickets' }, { name: 'helpdesk/issue', value: 'Issue' }, { name: 'helpdesk/room', value: 'Room' }, { name: 'helpdesk/subject', value: 'Subject' }, { name: 'helpdesk/userinter', value: 'User Interaction Requested' }, { name: 'tracker/archive', value: 'Archive' }, { name: 'tracker/logontracker', value: 'Logon Tracker' }, { name: 'tracker/webtracker', value: 'Web Tracker' }, { name: 'tracker/livelogons', value: 'Live Logons' }, { name: 'tracker/weblogs', value: 'Web Logs' }, { name: 'tracker/historiclogs', value: 'Historic Logs' }, { name: 'tracker/logs', value: 'Logs' }, { name: 'myfiles/myfiles', value: 'My Files' }, { name: 'myfiles/open', value: 'Open' }, { name: 'myfiles/download', value: 'Download' }, { name: 'myfiles/rename', value: 'Rename' }, { name: 'myfiles/only1', value: 'This only works on 1 item' }, { name: 'myfiles/create', value: 'Create' }, { name: 'myfiles/mydrives', value: 'My Drives' }, { name: 'myfiles/filefolder', value: 'File Folder' }, { name: 'myfiles/waiting', value: 'Waiting' }, { name: 'myfiles/renaming', value: 'Renaming' }, { name: 'myfiles/folderexists1', value: 'The folder' }, { name: 'myfiles/checking', value: 'Checking' }, { name: 'myfiles/folderexists2', value: 'already exists!' }, { name: 'myfiles/merge', value: 'Do you want to merge this folder?' }, { name: 'myfiles/cut', value: 'Cut' }, { name: 'myfiles/paste', value: 'Paste' }, { name: 'myfiles/copy/copy', value: 'Copy' }, { name: 'myfiles/copy/copying', value: 'Copying' }, { name: 'myfiles/copy/copyingitem1', value: 'Copying item' }, { name: 'myfiles/copy/error1', value: 'An Error has occured while copying' }, { name: 'myfiles/copy/error2', value: 'do you want to Continue?' }, { name: 'myfiles/move/move', value: 'Move' }, { name: 'myfiles/move/moving', value: 'Moving' }, { name: 'myfiles/move/movingitem1', value: 'Moving item' }, { name: 'myfiles/move/error1', value: 'An Error has occured while moving' }, { name: 'myfiles/move/error2', value: 'do you want to Continue?' }, { name: 'myfiles/move/question1', value: 'Are you sure you want to move:' }, { name: 'myfiles/downloadwarning', value: 'You are about to download this file. If you wish to edit this file, remember to\r\nsave it to your computer and upload it back once you have finished!' }, { name: 'myfiles/upload/random', value: 'Random Name Suffix' }, { name: 'myfiles/upload/upload', value: 'Upload' }, { name: 'myfiles/upload/uploading', value: 'Uploading' }, { name: 'myfiles/upload/uploadprogress', value: 'Upload Progress' }, { name: 'myfiles/upload/filetypewarning', value: 'is an restricted file type\r\n\r\nYou can only upload' }, { name: 'myfiles/upload/folderwarning', value: 'You cannot upload the folder %\r\n\r\nTry compressing it into a ZIP File first' }, { name: 'myfiles/upload/filetypeerror', value: 'You have attempted to upload a restricted file type!' }, { name: 'myfiles/upload/filesizewarning', value: 'is Too Big to Upload!' }, { name: 'myfiles/upload/fileexists1', value: 'The file' }, { name: 'myfiles/upload/fileexists2', value: 'already exists\r\n\r\nDo you want to overwrite it?' }, { name: 'myfiles/upload/failed', value: ' has Failed!' }, { name: 'myfiles/upload/note', value: 'This page will refresh when it has finished' }, { name: 'myfiles/delete/question1', value: 'Are you sure you want to delete:' }, { name: 'myfiles/delete/delete', value: 'Delete' }, { name: 'myfiles/delete/deletingitem1', value: 'Deleting item' }, { name: 'myfiles/zip/zipingitem1', value: 'Zipping item' }, { name: 'myfiles/zip/question1', value: 'What do you want to call your Zip File?' }, { name: 'myfiles/zip/question2', value: 'FileName:' }, { name: 'myfiles/zip/zip', value: 'ZIP' }, { name: 'myfiles/unzip/unzipping', value: 'Unzipping' }, { name: 'myfiles/unzip/error1', value: 'An Error has occured while unzipping' }, { name: 'myfiles/unzip/error2', value: 'do you want to Continue?' }, { name: 'myfiles/unzip/question1', value: 'Are you sure you want to unzip:' }, { name: 'myfiles/unzip/unzip', value: 'UnZIP' }, { name: 'myfiles/size', value: 'Size' }, { name: 'myfiles/type', value: 'Type' }, { name: 'myfiles/location', value: 'Location' }, { name: 'myfiles/contains', value: 'Contains' }, { name: 'myfiles/created', value: 'Created' }, { name: 'myfiles/typeoffile', value: 'Type of File' }, { name: 'myfiles/modified', value: 'Modified' }, { name: 'myfiles/accessed', value: 'Accessed' }, { name: 'myfiles/extension', value: 'Extension' }, { name: 'myfiles/newfolder', value: 'New Folder' }, { name: 'myfiles/tiles', value: 'Tiles' }, { name: 'myfiles/smallicons', value: 'Small Icons' }, { name: 'myfiles/mediumicons', value: 'Medium Icons' }, { name: 'myfiles/largeicons', value: 'Large Icons' }, { name: 'myfiles/details', value: 'Details' }, { name: 'myfiles/view', value: 'View' }, { name: 'myfiles/properties', value: 'Properties' }, { name: 'myfiles/preview', value: 'Preview' }, { name: 'myfiles/progress', value: 'Progress' }, { name: 'myfiles/sendto/googledocs', value: 'Send to Google Docs' }, { name: 'myfiles/sendto/googlesignin', value: 'Sign into Google Docs' }, { name: 'myfiles/sendto/googlesignin2', value: 'Once you have signed into Google, HAP+ will upload the selected file to your Google Docs' }, { name: 'myfiles/sendto/skydrive', value: 'Send to SkyDrive' }, { name: 'myfiles/homework/path', value: 'Path:' }, { name: 'myfiles/homework/homework', value: 'My Files - Homework' }, { name: 'myfiles/homework/new', value: 'New' }, { name: 'myfiles/homework/edit', value: 'Edit' }, { name: 'myfiles/homework/remove', value: 'Remove' }, { name: 'myfiles/homework/title', value: 'Title' }, { name: 'myfiles/homework/description', value: 'Description' }, { name: 'myfiles/homework/start', value: 'Start' }, { name: 'myfiles/homework/end', value: 'End' }, { name: 'myfiles/homework/students', value: 'Students' }, { name: 'myfiles/homework/teachers', value: 'Additional Teachers' }, { name: 'myfiles/homework/confirmremove', value: 'Are you sure you want to remove this homework?' }, { name: 'myfiles/homework/upload', value: 'Upload Homework' }],  livetiles: {   Init: function (data) {    if ($("#" + data[0].Data.Group).is(".me")) this.ShowMe(data);    else for (var i = 0; i < data.length; i++) {     var tile = new this.LiveTile(data[i].Type, data[i].Data);     for (var x = 0; x < this.TileHandlers.length; x++)      if (data[i].Type.match(this.TileHandlers[x].type)) { this.TileHandlers[x].func(data[i].Type, data[i].Data, tile); break; }     tile.Render();     this.Tiles.push(tile);    }   },   TileHandlers: [],   RegisterTileHandler: function (type, func) {    this.TileHandlers.push({ "type": type, "func": func });   },   Tiles: [],   ShowMe: function (data) {    for (var i = 0; i < data.length; i++)     if (data[i].Data.Name == "Me") {      $("#" + data[i].Data.Group).append('<div id="me-me"></div>').parent().addClass("me");      $.ajax({       url: hap.common.formatJSONUrl("~/api/livetiles/me"), type: 'GET', context: this.id, dataType: "json", contentType: 'application/JSON', success: function (data) {        if (data.Photo != "" && data.Photo != null) $("#me-me").append('<img src="' + hap.common.resolveUrl(data.Photo) + '" style="float: right;" />');        $("#me-me").append('<div id="me-name">' + data.Name + '</div><div id="me-email">' + data.Email + '</div>');       }, error: hap.common.jsonError      });     } else if (data[i].Data.Name == "Password") {      $("#" + data[i].Data.Group).append('<div id="me-password"><h1>Change My Password</h1><div><label for="me-password-current">Current Password: </label><input type="password" id="me-password-current" value="" /></div><div><label for="me-password-new">New Password: </label><input type="password" id="me-password-new" value="" /></div><div><label for="me-password-confirm">Confirm Password: </label><input type="password" id="me-password-confirm" value="" /></div><input type="button" id="me-setpassword" value="Change Password" /></div>');      $("#me-setpassword").button().click(function () {       if ($("#me-password-current").val().length == 0 || $("#me-password-new").val().length == 0 || $("#me-password-confirm").val().length == 0 || $("#me-password-confirm").val() != $("#me-password-new").val()) return false;       $.ajax({        url: hap.common.formatJSONUrl("~/api/livetiles/me/password"), type: 'POST', dataType: "json", contentType: 'application/JSON', data: '{ "oldpassword": "' + $("#me-password-current").val() + '", "newpassword": "' + $("#me-password-new").val() + '" }', success: function (data) {         alert("Password Updated");         $("#me-password-current, #me-password-new, #me-password-confirm").val("");        }, error: hap.common.jsonError       });       return false;      });     }   },   RegisterDefaultTiles: function () {    hap.livetiles.RegisterTileHandler("exchange.unread", function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     setTimeout("hap.livetiles.UpdateExchangeMail('" + t.id + "');", 100);    });    hap.livetiles.RegisterTileHandler("exchange.appointments", function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("appointment");     setTimeout("hap.livetiles.UpdateExchangeAppointments('" + t.id + "');", 100);    });    hap.livetiles.RegisterTileHandler(/exchange.calendarinfo\:/gi, function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).data("name", initdata.Name).data("mailbox", type.split(/exchange.calendarinfo\:/gi)[1]).addClass("appointment").click(function () {      $.ajax({       url: hap.common.formatJSONUrl("~/api/livetiles/exchange/calendarinfo"), context: t, type: 'POST', dataType: 'json', data: '{ "Mailbox" : "' + $('#' + t.id).data("mailbox") + '" }', contentType: 'application/JSON', success: function (data) {        var s = "";        var url = $(this.id).attr("href");        for (var i = 0; i < data.length; i++)         s += '<span style="font-size: 20px; display: block;">' + data[i].Subject + '</span>From: ' + data[i].Start + " To: " + data[i].End + "<br />" + unescape(data[i].Body).replace('\n', '') + "<hr />";        $("<div/>").html(s).dialog({ width: 800, height: 500, title: $(this.id).data("name"), autoOpen: true, buttons: { "Open": function() { window.location.href = url; }, "Close": function () { $(this).dialog("close"); } } });       }, error: hap.common.jsonError      });      return false;     });     setTimeout("hap.livetiles.UpdateExchangeCalendarInfo('" + t.id + "', '" + t.type.split(/exchange.calendarinfo\:/gi)[1] + "');", 100);    });    hap.livetiles.RegisterTileHandler(/exchange.calendar\:/gi, function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("appointment");     setTimeout("hap.livetiles.UpdateExchangeCalendar('" + t.id + "', '" + type.split(/exchange.calendar\:/gi)[1] + "');", 100);    });    hap.livetiles.RegisterTileHandler(/^me/gi, function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("me");     $.ajax({      url: hap.common.formatJSONUrl("~/api/livetiles/me"), type: 'GET', context: t.id, dataType: "json", contentType: 'application/JSON', success: function (data) {       $("#" + this + " span label").html("<b>" + data.Name + "</b><br />" + data.Email);       if (data.Photo != "" && data.Photo != null) $("#" + this + " span i").css("background-image", "url(" + hap.common.resolveUrl(data.Photo) + ")");       setInterval("$('#" + this + " span i').animate({ height: 'toggle' });", 8000);      }, error: hap.common.jsonError     });    });    hap.livetiles.RegisterTileHandler("bookings", function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("appointment");     setTimeout("hap.livetiles.UpdateBookings('" + t.id + "');", 100);    });    hap.livetiles.RegisterTileHandler("helpdesk", function (type, initdata, t) {     size = "large";     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("me");     setInterval("$('#" + t.id + " > span > i').animate({ height: 'toggle' });", 10000);     setTimeout("hap.livetiles.UpdateTickets('" + t.id + "');", 100);    });    hap.livetiles.RegisterTileHandler(/^uptime\:/gi, function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '"' + ' class="width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $("#" + t.id).addClass("me");     setTimeout("hap.livetiles.UpdateUptime('" + t.id + "', '" + type.substr(7) + "');", 100);    });    hap.livetiles.RegisterTileHandler("myfiles", function (type, initdata, t) {     t.html = '<a id="' + t.id + '" href="' + hap.common.resolveUrl(initdata.Url) + '" target="' + initdata.Target + '" title="' + initdata.Description + '" class="me' + ' width' + initdata.Width + ' height' + initdata.Height + '"' + (initdata.Color == '' ? '' : ' style="background-color: ' + initdata.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + initdata.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + initdata.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + initdata.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(initdata.Icon) + ');"></i><label></label></span>' + initdata.Name + '</a>';     t.Render();     $.ajax({      url: hap.common.formatJSONUrl("~/api/myfiles/drives"), type: 'GET', context: t.id, dataType: "json", contentType: 'application/JSON', success: function (data) {       var s = "";       for (var i = 0; i < (data.length > 3 ? 3 : data.length) ; i++)        s += "<b>" + data[i].Name + "</b>" + (data[i].Space == -1 ? "<br /><br />" : '<br /><span class="progress"><label>' + data[i].Space + '%</label><u style="width: ' + data[i].Space + '%"></u></span>');       $("#" + this + " span label").html(s);       setInterval("$('#" + this + " > span > i').animate({ height: 'toggle' });", 6000);      }, error: hap.common.jsonError     });    });   },   LiveTile: function (type, initdata) {    this.data = initdata;    this.type = type;    this.id = (this.data.Group + this.data.Name).replace(/[\s'\/\\\&\.\,\*\(\)@]*/gi, "");    if (type == "exchange.appointments" || this.type.match(/exchange.calendar\:/gi) || this.type == "bookings" || this.type == "helpdesk") size = "large";    this.html = '<a id="' + this.id + '" href="' + hap.common.resolveUrl(this.data.Url) + '" target="' + this.data.Target + '" title="' + this.data.Description + '"' + 'class="width' + this.data.Width + ' height' + this.data.Height + '"' + (this.data.Color == '' ? '' : ' style="background-color: ' + this.data.Color.Base + ';" onmouseover="this.style.backgroundColor = \'' + this.data.Color.Light + '\';" onmouseout="this.style.backgroundColor = \'' + this.data.Color.Base + '\';" onmousedown="this.style.backgroundColor = \'' + this.data.Color.Dark + '\';"') + '><span><i style="background-image: url(' + hap.common.resolveUrl(this.data.Icon) + ');"></i><label></label></span>' + this.data.Name + '</a>';    this.Render = function () {     if ($("#" + this.id).length > 0) return false;     else {      $("#" + this.data.Group).append($(this.html).attr("data-idname", this.data.Name));      if (hap.admin) {       $("#" + this.id).on("contextmenu", function (e) {        if ($(".editmode").length > 0) {         var b = $(this).hasClass("selected");         $(".selected").removeClass("selected");         $("#sidebaredit").removeClass("show");         $("#contextbar").removeClass("selectactive");         if (!b) { $("#contextbar").addClass("selectactive"); $(this).addClass("selected"); }         return false;        }       });      }      return true;     }    }   },   UpdateExchangeCalendarInfo: function (tileid, mailbox) {    $("#" + tileid + " span label").html($.datepicker.formatDate('D <b>d</b>', new Date()));    $.ajax({     url: hap.common.formatJSONUrl("~/api/livetiles/exchange/calendarinfo"), type: 'POST', dataType: 'json', data: '{ "Mailbox" : "' + mailbox + '" }', context: { tile: tileid, mb: mailbox }, contentType: 'application/JSON', success: function (data) {      var s = "";      for (var i = 0; i < data.length; i++)       s += data[i].Start + " - " + data[i].End + "<br />" + data[i].Subject + "<br />";      $("#" + this.tile + " span i").html(s);      if (data.length > 0) $("#" + this.tile + " span i").attr("style", "background-image: url();");      setTimeout("hap.livetiles.UpdateExchangeCalendarInfo('" + this.tile + "', '" + this.mb + "');", 100000);     }, error: hap.common.jsonError    });   },   UpdateExchangeCalendar: function (tileid, mailbox) {    $("#" + tileid + " span label").html($.datepicker.formatDate('D <b>d</b>', new Date()));    $.ajax({     url: hap.common.formatJSONUrl("~/api/livetiles/exchange/calendar"), type: 'POST', dataType: 'json', data: '{ "Mailbox" : "' + mailbox + '" }', context: { tile: tileid, mb: mailbox }, contentType: 'application/JSON', success: function (data) {      var s = "";      for (var i = 0; i < data.length; i++)       s += data[i] + "<br />";      $("#" + this.tile + " span i").html(s);      if (data.length > 0) $("#" + this.tile + " span i").attr("style", "background-image: url();");      setTimeout("hap.livetiles.UpdateExchangeCalendar('" + this.tile + "', '" + this.mb + "');", 100000);     }, error: hap.common.jsonError    });   },   UpdateExchangeAppointments: function (tileid) {    $("#" + tileid + " span label").html($.datepicker.formatDate('D <b>d</b>', new Date()));    $.ajax({     url: hap.common.formatJSONUrl("~/api/livetiles/exchange/appointments"), type: 'GET', context: tileid, dataType: "json", contentType: 'application/JSON', success: function (data) {      var s = "";      for (var i = 0; i < data.length; i++)       s += data[i] + "<br />";      $("#" + this + " span i").html(s);      if (data.length > 0) $("#" + this + " span i").attr("style", "background-image: url();");      setTimeout("hap.livetiles.UpdateExchangeAppointments('" + this + "');", 100000);     }, error: hap.common.jsonError    });   },   UpdateBookings: function (tileid) {    $.ajax({     type: 'POST',     url: hap.common.formatJSONUrl("~/api/BookingSystem/Search"),     dataType: 'json',     context: tileid,     data: '{ "Query": "' + hap.user + '" }',     contentType: 'application/json',     success: function (data) {      var d = "";      for (var i = 0; i < data.length; i++) {       var item = data[i];       d += (item.Date.match(/[0|1][0-9]\w\w\w/g) ? item.Date.substr(2, item.Date.length - 2) : item.Date) + ": " + item.Name + " in " + item.Room + "<br />";      }      if (data.length > 0) $("#" + this + " span i").attr("style", "background-image: url();");      $('#' + this + " span i").html(d);      setTimeout("hap.livetiles.UpdateBookings('" + this + "');", 110000);     },     error: hap.common.jsonError    });   },   UpdateTickets: function (tileid) {    $.ajax({     type: 'GET',     url: hap.common.formatJSONUrl("~/api/HelpDesk/Tickets/Open" + (hap.hdadmin ? '' : ('/' + hap.user))),     dataType: 'json',     context: tileid,     contentType: 'application/json',     success: function (data) {      var x = "";      for (var i = 0; i < data.length; i++) x += '<b>' + (i + 1) + '</b>:' + data[i].Subject + '<br />';      if (data.length == 0) x = "No Open Tickets";      $("#" + this + " span label").html(x);      setTimeout("hap.livetiles.UpdateTickets('" + this + "');", 500000);     },     error: hap.common.jsonError    });   },   UpdateExchangeMail: function (tileid) {    $.ajax({     url: hap.common.formatJSONUrl("~/api/livetiles/exchange/unread"), type: 'GET', context: tileid, dataType: "json", contentType: 'application/JSON', success: function (data) {      if (data > 0) {       $("#" + this + " span i").animate({ width: 60 }, 500, function () { $(this).parent().children("label").html(data); });      } else {       $("#" + this + " span label").html("");       $("#" + this + " span i").animate({ width: 108 });      }      setTimeout("hap.livetiles.UpdateExchangeMail('" + this + "');", 30000);     }, error: hap.common.jsonError    });   },   UpdateUptime: function (tileid, server) {    var con = { tile: tileid, server: server };    $.ajax({     url: hap.common.formatJSONUrl("api/livetiles/uptime/" + server), type: 'GET', context: con, dataType: "json", contentType: 'application/JSON', success: function (data) {      $("#" + this.tile + " span i").html(data);      setTimeout("hap.livetiles.UpdateUptime('" + this.tile + "', '" + this.server + "');", 5000);     }, error: hap.common.jsonError    });   }  } }; hap.livetiles.RegisterDefaultTiles(); $(function () {  hap.header.Init();  if (hap.load > hap.loadtypes.none) {   hap.help.Init();   hap.common.keepAlive();  }  hap.common.makeSwitchs(); });}