function setScreenStyle()
{
    var x = screen.width;
    var y = screen.height;
    if (x / y > 2.0) {
        // Probably a dual monitor setup.  Actually, >1.6 would tell.
        x = x / 2;
    }
    s = 'http://www.boyerstation.com/css/About_the_Background.css?x=' + x + '&amp;y=' + y;
    document.write('<link rel="stylesheet" type="text/css" href="' + s + '" />');
}
setScreenStyle();

