resolutionCheck();
/////////////////////////////////////////////////////////////////////////////////////////////////
function resolutionCheck() {
   if (screen.width < 800 || screen.height < 600){
   alert('This web site is best viewed with 800 x 600 or greater screen resolution')
   }
}