﻿var excludedIps= new Array(
"::1", // IPV6 Localhost
"70.171.85.90", // Robbie Dynamic
"68.14.206.195", // Robbie Static
"98.175.129.2"   // Microfinish
);

function isExcluded(ip) {
    return (jQuery.inArray( ip, excludedIps) > -1);
}
