﻿
if (screen.width <= 600 && readCookie("viewFull") === null) {
    document.location = "http://mckinleycc.org/m/Mobile-Landing.aspx";
}


function readCookie(nam) {
    var tC = document.cookie.split('; ');
    for (var i = tC.length - 1; i >= 0; i--) {
        var x = tC[i].split('=');
        if (nam == x[0]) return unescape(x[1]);
    }
    return null;
}

