function show_detail(numero) {

	crossobj = $('detail_produit_' + numero); 
	crossobj.style.display = 'block';
	
	var iebody=(document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body
	
	var dsocleft=document.all? iebody.scrollLeft : pageXOffset
	var dsoctop=document.all? iebody.scrollTop : pageYOffset
	
	if (parseInt(navigator.appVersion)>3) {
				if (navigator.appName=="Netscape") {
					winW = window.innerWidth-16;
					winH = window.innerHeight-16;
				}
				if (navigator.appName.indexOf("Microsoft")!=-1) {
					winW = document.body.offsetWidth-20;
					winH = document.body.offsetHeight-20;
				}
			}
	
	if (document.all||document.getElementById){
		crossobj.style.left=parseInt(dsocleft)+5+"px"
		
		crossobj.style.left = parseInt((winW / 2) - (crossobj.offsetWidth/2)) + 'px';
		crossobj.style.top = dsoctop + parseInt((winH / 2) - (crossobj.offsetHeight/2)) + 'px';
		
		if (parseInt(crossobj.style.top) < 230) {
			crossobj.style.top = '230px';
		}
		
	}

}

function hide_detail(numero) {
	Element.hide('detail_produit_' + numero);	
}