// CUSTOM JS HERE

function detect_resolution() {

default_res = '1024x768';

if (get_cookie('user_resolution') == ''){
set_cookie('user_resolution',default_res);
}

if (BrowserDetect.browser == 'Internet Explorer'){
detected_width = document.body.offsetWidth;
} else {
detected_width = window.innerWidth;
}

//List Resolutions from small to large

//if (detected_width <= 770){user_resolution = '640x480'};
if (detected_width > 770){user_resolution = '800x600'};
if (detected_width > 900){user_resolution = '1024x768'};
//if (detected_width > 1200){user_resolution = '1280x1024'};

if (get_cookie('user_resolution') != user_resolution && get_cookie('user_resolution') != ''){
set_cookie('user_resolution',user_resolution);
setTimeout("window.location.reload()",1);
}

} //detect_resolution


//window.onresize = detect_resolution;

