// See the "ClickBank Affiliate, Link Directly To 
//    the Product" article linked from 
//    http://willmaster.com/possibilities/archives/
//
// This code is for the ClickBank specified homepage.
// The code is different on product pages.
// Please read the article.
//
// This code has only one places to customize:
//
// Specify a cookie name, using the same name in the 
//    code of all pages that use this system.

//ClickBankCookieName = 'MasterSeriesClickBankCookie';
ClickBankCookieName = 'WorkAtHomeOnlineBusinessCookie';


//
// No other customizations are require for this page.
function GetClickBankRedirectCookie() {
var Ccontent = '0';
if(document.cookie.length > 0) {
   var Cname = ClickBankCookieName + '=';
   var Cbegin = document.cookie.indexOf(Cname);
   var Cend = 0;
   if(Cbegin > -1) {
      Cbegin += Cname.length;
      Cend = document.cookie.indexOf(";",Cbegin);
      if(Cend < Cbegin) { Cend = document.cookie.length; }
      Ccontent = document.cookie.substring(Cbegin,Cend);
   }
}

if(Ccontent != '0') { window.location = Ccontent; }
}
GetClickBankRedirectCookie();