//MENUEBAR FOR GALLERY

var tmp_div = 'FALSE';
var menue   = 'FALSE';

function showDiv( menue )
{
	
	if(menue)document.getElementById( menue ).style.visibility = "visible";
	
	//alert(parent.tmp_div+' != '+menue);
	if((parent.tmp_div != menue)&&(parent.tmp_div != 'FALSE'))document.getElementById(parent.tmp_div).style.visibility = "hidden";
	
	parent.tmp_div = menue;	
	return true;
}

function hideDiv( menue )
{

	if(parent.tmp_div != 'FALSE')document.getElementById( menue ).style.visibility = "hidden";
	//alert(parent.tmp_div+' != '+menue);
	return true;
}

function hideDivTmp( )
{

	if(parent.tmp_div != 'FALSE')document.getElementById( parent.tmp_div ).style.visibility = "hidden";

	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 );
	}
}