// open Kaboose promo pop-under var promoURL="http://www.kaboose.com/ads/promoFS.php" function isset_cookie(cookieName) { var cookieName=cookieName+"=" if (document.cookie.length > 0) { if (document.cookie.indexOf(cookieName) != -1) { // cookie exists return 1; } } // cookie not found return 0; } function showPromo(promoURL) { if (isset_cookie('cookieTest') && !isset_cookie('stopPromos')) { promo=window.open(promoURL,"","width=800,height=600,scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=0") promo.blur() window.focus() document.cookie="stopPromos=1" } document.cookie="cookieTest=1" } showPromo(promoURL)