//For more information on this script, please contact Casey J. Burk via e-mail - "caseyburk@caseyburk.com" and use "<!--<span id="count" style="position:absolute;top:0;left:5px;"></span>-->" (without quotes) for debugging.
window.onload = function(){setScreenClass();};window.onresize = setScreenClass;
function setScreenClass(){var w = document.documentElement.clientWidth;var h = document.documentElement.clientHeight;var w_class = (w<=240)?'w_240':(w>240&&w<=320)?'w_320':(w>320&&w<=640)?'w_640':(w>640&&w<=800)?'w_800':(w>800&&w<=1024)?'w_1024':(w>1024&&w<=1152)?'w_1152':(w>1152&&w<=1280)?'w_1280':'w_1600';var h_class = (h<=600)?'h_600':(h>600 && h<=768)?'h_768':(h>768 && h<=800)?'h_800':(h>800 && h<=1024)?'h_1024':(h>1024 && h<=1280)?'h_1280':'h_1600';document.body.className=w_class+' '+h_class;};