est=new Browser();
function Browser()
{
	b=navigator.appName;
	if(b=="Netscape")this.b="ns";
	else if(b=="Microsoft Internet Explorer")this.b="ie";
	else this.b=b;
	this.version=navigator.appVersion;
	this.v=parseInt(this.version);
	this.ns=(this.b=="ns"&&this.v>=4);
	this.ie=(this.b=="ie"&&this.v>=4);
	this.dom=((document.createRange&&(document.createRange().createContextualFragment))?true:false);
}

function sh(div,state)
{
	this.css=est.dom?document.getElementById(div).style:est.ie?document.all[div].style:est.ns?document.layers[div]:0;this.css.visibility=state;
	this.css.visibility=state;
}
function over(t,d)
{	t.bgColor='#E5E5E4'; sh('disque'+d+'G', 'visible');	sh('disque'+d+'D', 'visible');}
					
function out(t,d)
{	t.bgColor='#FFF9ED'; sh('disque'+d+'G', 'hidden');	sh('disque'+d+'D', 'hidden');}

function detailDisque(id) 
{	window.location = "../lp/detail.php?IdDisque=" + id;	}

function profilMembre(id) 
{	window.location = "./index.php?Mode=ProfilMembre&IdMembre=" + id;	}