var title="Special Offer";
var contents="<a href='http://www.flxclix.com/r/z/9384/CD10081/&dp=0&subid1='><img src='http://123.fluxads.com/42/10081/9384/' alt='' border='0'></a>";
var bxheight="310";
var bxwidth="300";
var bxbgcolor="#FFFFFF";

function FullPopOverMain() {


var key_value = "myTestCookie=true";
var foundCookie = 0;

// Get all the cookies from this site and store in an array
var cookieArray = document.cookie.split(';');

    // Walk through the array
    for(var i=0;i < cookieArray.length;i++)
        {
               var checkCookie = cookieArray[i];
        // Remove any leading spaces
               while (checkCookie.charAt(0)==' ')
               {
                 checkCookie = checkCookie.substring(1,checkCookie.length);
               }
       
        // Look for cookie set by key_value
                if (checkCookie.indexOf(key_value) == 0)
               {
                 
            // The cookie was found so set the variable
                   foundCookie = 1;
               }
    }
    // Check if a cookie has been found
    if ( foundCookie == 0)
    {
        // The key_value cookie was not found so set it now
        document.cookie = key_value;
        FullPopOver();
    }  

}

function FullPopOver() {
var thediv=document.getElementById('displaybox');
	if(thediv.style.display == "none"){
		thediv.style.display = "";
		thediv.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><div id='innerbox' style='border-style:solid; border-width:1px; border-color:#000000; height:"+bxheight+"px; width:"+bxwidth+"px;'><table cellSpacing='0' cellPadding='0' border='1' bgcolor='"+bxbgcolor+"' width='100%' height='100%' border-color:black'><tr><td align='left' valign='top' bgcolor='#0055E5' width='100%' height='10px'><font color=white size=2 face=arial><b>"+title+"</td></font></td><td bgcolor='#bebebe' align='right'>&nbsp<font color='#000000' size='3' face='arial'><span onclick='return FullPopOver()' style='cursor:hand' title='Click here to close this window'><b>X</b>&nbsp</span></font></td></tr><tr><td height='100%' colspan='2'><font color=black size=2 face=arial><center><b><a href='#' onclick='return FullPopOver()' style='cursor:hand'>Close Ad</a></b></center>"+contents+"</font></td></tr></table></div></td></tr></table>";
	}else{
		thediv.style.display = "none";
		thediv.innerHTML = '';
	}
	return false;

    }  

