<!-- Begin Footer

// NOTE: If you use a ' add a slash before it like this \'
pValue = readCookie ("play");

document.write ("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"960\" height=\"337\">")
document.write ("<param name=\"movie\" value=\"flash/menu.swf\">")
document.write ("<param name=\"quality\" value=\"high\">")
document.write ("<param name=\"FlashVars\" value=\"noplay="+ pValue+"\" />")
document.write ("<embed flashvars=\"noplay="+pValue+"\" src=\"flash/menu.swf\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"960\" height=\"337\"></embed>")
document.write ("</object>")


writeCookie("play","true","4");


function writeCookie(name, value, hours){
 var expire = "";
 if(hours != null){
  expire = new Date((new Date()).getTime() + hours * 3600000);
  expire = "; expires=" + expire.toGMTString();
 }
 document.cookie = name + "=" + escape(value) + expire;
}

 function readCookie(name){
 var cookieValue = "";
 var search = name + "=";
 if(document.cookie.length > 0){
  offset = document.cookie.indexOf(search);
  if (offset != -1){
   offset += search.length;
   end = document.cookie.indexOf(";", offset);
   if (end == -1) end = document.cookie.length;
   cookieValue = unescape(document.cookie.substring(offset, end))
  }
 }
 return cookieValue;
}

//  End -->




