// Initialize document cookie ---------------------------------
function bake() {
  // Set Cookie to Expire in 30 days ------------------
  xtic = 1000 * 60 * 60 * 24 * 30
  var sellby = new Date();
  sellby.setTime(sellby.getTime() + xtic);
  document.cookie = 'GIPCo=0; expires=' + sellby.toGMTString();
  document.cookie = 'VIDXRES=' + screen.width + '; expires=' + sellby.toGMTString();
  document.cookie = 'VIDYRES=' + screen.height + '; expires=' + sellby.toGMTString();
return; }
