 
var LastLayoutOpen=""
var LastCellMaster=""
function OpenLayout(CellMaster,idLayout){
	var m = document.getElementById(idLayout);
	if(LastLayoutOpen){
		clearTimeout(timerMENU);
		OldLay();
	}
	CellMaster.className='Menu1On';
	m.style.visibility='visible';
	timerMENU=setTimeout("OldLay()",10000);
	LastLayoutOpen=m;
	LastCellMaster=CellMaster;
}
function OldLay(){
	LastLayoutOpen.style.visibility='hidden';
	LastCellMaster.className='Menu1OUT';
}


function ActiveLayout(idLayout){
  idLayout.style.background ='#FCCC85';
}

function NoActiveLayout(idLayout){
  idLayout.style.background ='#FDE3BD';
}

