﻿// JScript File
   var tmpcookie = new Date();
   chkcookie = (tmpcookie.getTime() + 'hh_c_test');
   document.cookie = "chkcookie=" + chkcookie + "; path=/";
    if (document.cookie.indexOf(chkcookie,0) < 0) {
      window.location = 'systemrequirements.aspx';
      }
    else {
     // do nothing
    }

