function openCiscoCounter()
{
	// Height fix (both 'window' and 'body' return the viewports height, instead of the actual content height
	$('#cisco_counter_overlay').css('height', $(document).height());
	$('head').append('<style type="text/css">#cisco_counter_flash { height: '+$(window).height()+'px !important; }</style>');

	$('#cisco_counter_overlay').fadeIn(500, function(){
		var params = {
				quality: "high",
				wmode: "window",
				scale: "noscale",
				allowscriptaccess: "always",
				bgcolor: "#000000"
			};
			var randomNoCachingNumber = Math.round(Math.random() * 10000);
			
			var flashvars = {state:"LIVE", buildVersion:"1.0", gateway:"http://cisco.loohuis.nl/amfphp/gateway.php"};
			var attributes = {id:"cisco_counter_flash"};
			swfobject.embedSWF("./assets/swf/main.swf?rnd=" + randomNoCachingNumber, "cisco_counter_flash", "100%", $(window).height(), "10.0.0.0", "./assets/swf/dpdk_expressInstall.swf", flashvars, params, attributes);
			swffit.fit("cisco_counter_flash", 1000, 600);
		});	
		return false;
}

function closeCiscoCounter()
{
	$('#cisco_counter_overlay').html('<div id="cisco_counter_flash"></div>');
	$('#cisco_counter_overlay').fadeOut(500);
	
	return false;
}			