//onmouseover="this.style.backgroundColor='#F4F1EA';" onmouseout="this.style.backgroundColor='#FCF9F2';"

function on(el1)
{
	
	el1.style.backgroundColor='#FCF9F2';
	//which.style.backgroundColor='#F4F1EA';
}


function off(el1)
{
	
	el1.style.backgroundColor='#F4F1EA';
	//which.style.backgroundColor='#F4F1EA';
}

function closeDiv(div){
	if (t){
	    div.style.display='none';
	}
}


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';
   el1.style.backgroundColor='F4F1EA';
  }
  else {
   el1.style.display='none';
  }
}
*/
for (i=1;i<6;i++){
   document.getElementById("div"+i).style.display="none";
   document.getElementById("div"+i).style.backgroundColor="#F4F1EA";
}
document.getElementById("div"+el).style.display="block";
if (el==3) document.getElementById("dv"+el).innerHTML="<table border=0 cellpading=0 cellspacing=0 height=20><tr><td bgcolor=#FCF9F2></td></tr></table>";
//if (el==3) document.getElementById("div"+el).style.position="relative";
//if (el==3) document.getElementById("div"+el).style.top=10+"px";
if (el==4) document.getElementById("dv"+el).innerHTML="<table border=0 cellpading=0 cellspacing=0 height=20><tr><td bgcolor=#FCF9F2></td></tr></table>";

}

function mOut(){
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
      if (e.srcElement.tagName=="span") alert ("div");
//      alert(e.srcElement.tagName);
      alert(e.srcElement.className);
}