function setCookie(name, value, expires, secure) { 
  var path = "/";
  var domain = "escapees.com";
  var curCookie = name + "=" + escape(value) + 
      ((expires) ? "; expires=" + expires.toGMTString() : "") + 
      ((path) ? "; path=" + path : "") + 
      ((domain) ? "; domain=" + domain : "") + 
      ((secure) ? "; secure" : ""); 
  document.cookie = curCookie; 
} 

function getCookie(name) { 
  var dc = document.cookie; 
  var prefix = name + "="; 
  var begin = dc.indexOf("; " + prefix); 
  if (begin == -1) { 
    begin = dc.indexOf(prefix); 
    if (begin != 0) return null; 
  } else 
    begin += 2; 
  var end = document.cookie.indexOf(";", begin); 
  if (end == -1) 
    end = dc.length; 
  return unescape(dc.substring(begin + prefix.length, end)); 
} 

var Text = new Array(20); 
var graphic = new Array(20); 

Text[0] ="<font size=-1 face=Arial, Helvetica, sans-serif><font color=\"red\"><b>There is an important update to the program!</b></font><br> Camping World receipts must be less than 3 months old to be eligible to be counted for the 2 percent donation to CARE! <a href=\"http://www.escapees.com/ClubNewsArchive/08-02-02February%202008%20--%20%20Club%20News%20Camping%20World%20Receipts%20Update.pdf\" target=\"_blank\">Read More...</a></font>"; 
graphic[0] = "SmallCARE logo.jpg"; 

Text[1] ="<font size=-1 face=Arial, Helvetica, sans-serif><br><font color=\"red\"><b>Stay Informed! Subscribe Today!</b></font><br> Subscribe to E-News and Club News! E-News keeps members informed about industry recalls, RVers’ rights happenings and more. Club News delivers information about the latest Escapees RV Club news and events. <a href=\"http://www.escapees.com/ClubNews.asp\" target=\"_blank\">Subscribe today.</a></font>"; 
graphic[1] = "blank.gif"; 

Text[2]="<br /><font size=-1 face=Arial, Helvetica, sans-serif><font color=red><b>Mail Service Personal Assistant</font></b><br />Escapees Mail Service has long been known as the best and most customizable mail service. Well, being the overachievers we are, we wanted to take our service to the next level! No matter which category of mail service you subscribe to, our new personal assistant program will be an exceptional benefit to you.<a href=\"http://www.escapees.com/personalassistant\" target=\"_blank\">  Read more...</a></font></p>";
graphic[2]="blank.gif";

// ***** Important set number of banners below ***** 
var num_banners = 2; 
// ************************************************* 

var highlightnum = "highlightnum";
var num = getCookie(highlightnum);
if (num == null) { 
num = Math.random(); 
num = ( num * ( num_banners ) ); 
num = Math.round(num); 
} 

 {
 document.write ("<img src=\"http://www.escapees.com/highlights/" + graphic[num] + "\" align=\"left\" hspace=\"6\" border=\"0\" ></a>" + Text[num]); 
 }

num++ 
if (num > num_banners) { 
num = 0 
} 
setCookie(highlightnum, num)
