function toggleElementById( element_id ) {

    var ChildrenList = document.getElementById( 'children_list_'+element_id);
    ChildrenList.style.display = (ChildrenList.style.display == 'block' ? 'none' : 'block');

    var Img = document.getElementById( 'img_'+element_id);
    Img.src = (ChildrenList.style.display == 'block' ? '/design/admin/images/content_tree-close.gif' : '/design/admin/images/content_tree-open.gif');

}



function ShowHidePanel(id)
{
	var current;
	current = (document.getElementById(id).style.display == 'none') ? 'block' : 'none';
	document.getElementById(id).style.display = current;
}

function hidePanel(id){
	
	document.getElementById(id).style.display = 'none';
}

function showPanel(id){
	
	document.getElementById(id).style.display = 'block';
}

function getFlash(animID){
	if (navigator.appName.indexOf("Microsoft") != -1){
		return window[animID]
	}
	else
	{
		return document[animID]
	}

}

function sendToFlash(data){
	
	getFlash('flashObject').retour(data);
}