//onmouseover="this.style.backgroundColor='#F4F1EA';" onmouseout="this.style.backgroundColor='#FCF9F2';"

function on(el1)
{
	
	el1.style.backgroundColor='#F4F1EA';
	//which.style.backgroundColor='#F4F1EA';
}


function off(el1)
{
	
	el1.style.backgroundColor='#FCF9F2';
	//which.style.backgroundColor='#F4F1EA';
}



function openDiv(el){
var i;
for (i=1;i<6;i++){
  el1='div'+i;
  el1=eval(el1);
  if (i==el && el1.style.display=='none'){
   el1.style.display='block';
  }
  else {
   el1.style.display='none';
  }
}
}
