    function getcss(cssfile)
{
        loadcss = document.createElement('link')
        loadcss.setAttribute("rel", "stylesheet")
        loadcss.setAttribute("type", "text/css")
        loadcss.setAttribute("href", cssfile)
        document.getElementsByTagName("head")[0].appendChild(loadcss)
    }
    if (document.documentElement.clientWidth == 0)
    {
        if (screen.width < 1190)
            getcss('style/lowres.css')
    }
    else if (document.documentElement.clientWidth < 1190)
        getcss('style/lowres.css')
 

