function CoverflowClose(id) {
	document.getElementById(id).style.display = 'none';
}

var SetCoverflow = false;
function CoverflowOpen(id)
{
	var html;
	
	if (SetCoverflow == false)
	{
		html = '<div id="CoverflowInteractive" class="Coverflow" style="display: none;"></div>';
		
		document.getElementById('footerNavigation').innerHTML += html;
		
		SetCoverflow = true;
	}
	
	html = '<p>';
	html = html + '<object id="FlashInteractive" style="width: 100%;" width="100%" height="100" data="fileadmin/upload/ort-online/Flash/CoverflowMain.swf?content_uid=' + id + '&amp;htmlid=CoverflowInteractive" type="application/x-shockwave-flash">';
	html = html + '<param name="quality" value="high" />';
	html = html + '<param name="wmode" value="transparent" />';
	html = html + '<param name="src" value="fileadmin/upload/ort-online/Flash/CoverflowMain.swf?content_uid=' + id + '&amp;htmlid=CoverflowInteractive" />';
	html = html + '</object>';
	html = html + '</p>';
	
	document.getElementById('CoverflowInteractive').innerHTML = html;
	document.getElementById('CoverflowInteractive').style.display = 'inline';
	document.getElementById('FlashInteractive').style.height = document.getElementById('CoverflowInteractive').offsetHeight + 'px';
}