// Returns the value of a cookie
function getCookie(cookieField)
{
  var cookieJar = document.cookie;
  var crumb = cookieJar.indexOf(cookieField);
  var cookieValue = "";
  if (crumb != -1) {
     var eocrumb = cookieJar.indexOf(';',crumb);
     if (eocrumb == -1) {
        eocrumb = cookieJar.length;
     }
     if (crumb != -1) {  // found
       cookieValue = cookieJar.substring(crumb + 9, eocrumb);
     }
  }
  return unescape(cookieValue);
}