// JavaScript Document
function show_roll(id){
	var divid=id+'_sub';
	var tdidb=id+'b';
	var imgid='img_'+id;
	if(document.getElementById(divid))document.getElementById(divid).style.display='block';
	if(document.getElementById(id))document.getElementById(id).style.background="url('images/fondorange.gif')";
	if(document.getElementById(tdidb))document.getElementById(tdidb).style.background="url('images/fondorange.gif')";
	if(document.getElementById(imgid))document.getElementById(imgid).src='images/squares_0_hl.gif';
}
function hide_roll(id){
	var divid=id+'_sub';
	var tdidb=id+'b';
	var imgid='img_'+id;
	if(document.getElementById(divid))document.getElementById(divid).style.display='none';
	if(document.getElementById(id))document.getElementById(id).style.background="url('images/fondbleufonce.gif')";
	if(document.getElementById(tdidb))document.getElementById(tdidb).style.background="url('images/fondbleufonce.gif')";
	if(document.getElementById(imgid))document.getElementById(imgid).src='images/squares_0.gif';
}
