//Resolution based Redirect 1.0 - INDEXredirect.js - 0110111519
if (screen.width <= 640) {
document.location = "index1024.html";
}
else if (screen.width <= 800) {
document.location = "index1024.html";
}
else if (screen.width <= 1024) {
document.location = "index1024.html";
}
else if (screen.width <= 1280) {
document.location = "index1280.html";
}
else if (screen.width <= 1400) {
document.location = "index1400.html";
}
else if (screen.width <= 1680) {
document.location = "indexlarger.html";
}
else if (screen.width <= 1920) {
document.location = "indexlarger.html";
}
