//MENUEBAR FOR GALLERY

var tmp_div = false;
var menue   = false;

function showDiv( menue )
{
	
	if(document.getElementById( menue ))
	{
		document.getElementById( menue ).style.display = "block";	
	}
	
	//alert(parent.tmp_div+' != '+menue);
	if((tmp_div != menue)&&(tmp_div != false )) tmp_div.style.display = "none";
	if( document.getElementById( menue ) ) tmp_div = document.getElementById( menue );	
	
	return true;
}

function hideDiv( menue )
{

	if(parent.tmp_div != 'FALSE')document.getElementById( menue ).style.display = "none";
	//alert(parent.tmp_div+' != '+menue);
	return true;
}
/* in BODY falls user in text area klickt */
function hideDivTmp( )
{

	//if(parent.tmp_div != false) parent.tmp_div.style.display = "none";

	return true;
}

var showit;

function showDivPass( showit )
{
	
	document.getElementById( showit ).style.visibility = "visible";
	return true;
}

function hideDivPass( showit )
{

	document.getElementById( showit ).style.visibility = "hidden";

	return true;
}

function checkBoxCheck(showit)
{
	// IF TRUE SHOW PASS
	if(document.menue_top.pass.checked)
	{
		showDivPass( showit );
		//CLEAR DEFAULT VARS
		document.menue_top.passwd.value = '';
		document.menue_top.groupe.value = '';
		//alert('win'+document.menue_top.pass.checked );
	}
	else
	{
		hideDivPass( showit );
		//alert('lose'+document.menue_top.pass.checked );
	}
}
