// --- Begin Javascript ---
function detect()
{
    if(screen.width<1024||screen.height<768)
    {
        alert("===================  USER NOTE:  ===================\n\nThis web page is best viewed with a screen resolution of 1024 pixels by 768 pixels or higher.  Your current display or screen resolution is "+screen.width+" pixels by "+screen.height+" pixels. If possible, please change your display resolution.\n\n Thank You -- OHS Website Admin")
} else {
    // Meets the standard and do nothing...
    }
}
// --- End Javascript ---