\n');
}
//*****************************************
//* PROMO AD JAVASCRIPT
//* Added by SLH, 01-30-2009
//*****************************************
function setCookie(cookie_name)
{
cookie_name = fTrim(cookie_name);
var expireDays = 6000;
var exp = new Date();
var elIframe = document.getElementById("ifPromo");
if (cookie_name == '')
{
cookie_name = 'pantone_UnsetPromoCookie';
}
exp.setDate(exp.getDate() + expireDays);
document.cookie=cookie_name + "=" + escape(1) + ((expireDays==null) ? "" : ";expires="+exp.toGMTString());
// Now set the iframe "ifPromo" src equal to PromoFlashFeeder.aspx, which will run
// the code needed to set tblHomePromos.iCookieCtr = iCookieCtr + 1 (we are tracking how
// many times users skip each promo.)
elIframe.src = 'PromoFlashFeeder.aspx?promoCookie=' + cookie_name;
}
function fTrim(text)
{
// / open search
// ^ beginning of string
// \s find White Space, space, TAB and Carriage Returns
// + one or more
// | logical OR
// \s find White Space, space, TAB and Carriage Returns
// $ at end of string
// / close search
// g global search
return text.replace(/^\s+|\s+$/g, "");
}
//-->
|
|