  function pop_up_light_box()
  {
  
function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
  {
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}

function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
  {
  
  }
else 
  {
  username="popup";
  if (username!=null && username!="")
    {
	
    setCookie("username",username,7);
	 $lb.launch({ url: 'http://www.franchiseanalyzer.org/downloading3', options: 'scrollbars:yes width:1020 height:2300', title: 'Download Now and Receive a BONUS: Free Franchise Advice'})
    }
  }
}

checkCookie();
 
  }
  
  function pop_up_light_box_with_delay(secs)
  {
	setTimeout('pop_up_light_box()',secs*1000);
  }
  
 
