// JavaScript Document


//Sniff the visitors screen resolution with this .js


if (screen.width==800 && screen.height==600)
    { 
        window.location.replace("Index800x600.html")
    }

else if (screen.width==1920 && screen.height==1200)
    { 
        window.location.replace("Index1920.html")
    }
else if (screen.width==1600 && screen.height==1200)
    { 
        window.location.replace("Index1920.html")
    }
else if (screen.width==1400 && screen.height==1050)
    { 
        window.location.replace("Index1280x768.html")
    }
else if (screen.width==1280 && screen.height==1024)
    { 
        window.location.replace("Index1280x768.html")
    }
else if (screen.width==1024 && screen.height==768)
    { 
        window.location.replace("Index1024x768.html")
    }
else if (screen.width==1152 && screen.height==864)
    { 
        window.location.replace("Index1024x768.html")
    }

else
    {
        window.location.replace("Index1280x768.html")
    }

