//
function modShowAudioBox(entry_id){
	if(document.getElementById("infoBox")){
		deleteElement("infoBox");	
	}
	var flashObject="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"320\" height=\"130\">";
	flashObject+="<param name=\"movie\" value=\"modules/audio_und_video/flash/loadAudioFile.swf?entry_id="+entry_id+"\" />";
	flashObject+="<param name=\"quality\" value=\"high\" />";
	flashObject+="<embed src=\"modules/audio_und_video/flash/loadAudioFile.swf?entry_id="+entry_id+"\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"320\" height=\"130\"></embed>";
	flashObject+="</object>";
	var infoBox=document.createElement("div");
	infoBox.id="infoBox";
	infoBox.style.width="320px";
	infoBox.style.height="auto";
	infoBox.style.position="absolute";
	infoBox.style.left="290px";
	infoBox.style.top="200px";
	infoBox.innerHTML=flashObject;
	document.body.appendChild(infoBox);
	return false;
}

function modShowVideoBox(entry_id){
	if(document.getElementById("infoBox")){
		deleteElement("infoBox");	
	}
	var flashObject="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\"420\" height=\"380\">";
	flashObject+="<param name=\"movie\" value=\"modules/audio_und_video/flash/loadVideoFile.swf?entry_id="+entry_id+"\" />";
	flashObject+="<param name=\"quality\" value=\"high\" />";
	flashObject+="<embed src=\"modules/audio_und_video/flash/loadVideoFile.swf?entry_id="+entry_id+"\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"420\" height=\"380\"></embed>";
	flashObject+="</object>";
	var infoBox=document.createElement("div");
	infoBox.id="infoBox";
	infoBox.style.width="420px";
	infoBox.style.height="auto";
	infoBox.style.position="absolute";
	infoBox.style.left="290px";
	infoBox.style.top="200px";
	infoBox.innerHTML=flashObject;
	document.body.appendChild(infoBox);
	return false;
}

function deleteElement(id){
	if(document.getElementById(id)){
		var parent=document.getElementById(id);
		for(var i=0;i<parent.childNodes.length;i++){
			parent.removeChild(parent.childNodes[i]);	
		}
		parent.parentNode.removeChild(parent);
	}	
}
var activeEntry="";
function showEntries(entry){
	
	if(entry){
		var table=entry.getElementsByTagName("table")[0];
		if(activeEntry!="" && activeEntry!=table){
			activeEntry.style.display="none";
		}	
		if(table.style.display!="block"){
			table.style.display="block";	
			activeEntry=table;
		}
		else{
			table.style.display="";		
		}
	return false;
	}	
}


