function ChangColor(obj){
    obj.style.backgroundColor='#8A581D';
	obj.style.color='#FFCC33';
	obj.filters.alpha.opacity='100';
	
}
function RestoreColor(obj){
    obj.style.backgroundColor='';
	obj.style.color='#FFFFFF';
	obj.filters.alpha.opacity='60';
}

//For Detail_Pic
function Close_Table() //Close all detail_pic table
{
      for (i=1; i <= 6; i++)
       {
        document.all("d"+i).style.display="NONE";
       }
}
function Open_Table(obj)

{

        document.all(obj).style.display="BLOCK";

}
