// ONLINE BOOSTER V 1.0

document.write("<div id=\"hitarea\" onmouseover=\"Activate();\"></div>");

document.write("<div id=\"ob_box\" onmouseover=\"\">");
document.write("<div id=\"close\" onclick=\"Closer();\"></div>");
document.write("<div id=\"ob_content\"></div>");
document.write("</div>");

$('#ob_content').load('onlinebooster/demo.html', function() {
});

function Activate()
{	

		document.getElementById('ob_box').style.display = "block";
		
		$('#ob_box').animate({
			top: '50%'
		  }, 1000, function() {
			// Animation complete.
		  });


}

function Closer()
{
			$('#ob_box').animate({
			top: '-50%'
		  }, 1000, function() {
			// Animation complete.
		  });
	//document.getElementById('ob_box').style.display = "none";
}

function CheckCookie(naam) {
  var str = document.cookie;
  var zstr = naam + "=";
  var start = str.indexOf(zstr, 0);
  if(start == -1) {
    return false;
  } else {
    start += zstr.length;
    var eind = str.indexOf(";", start);
    if(eind == -1) eind = str.length;
    return unescape(str.substring(start, eind));
  }
} 

document.cookie = 'actief=false'