﻿function indisponible() {
 alert("Cette fonction sera bientôt disponible. N'hésitez pas à revenir nous voir !");
}
function dummy()
{
}
function fBlocMouseOver(id) {
 document.getElementById(id).style.borderColor="#fff";
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)-1) +"px";
 document.getElementById(id).style.width="70px";
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)-1) +"px";
 document.getElementById(id).style.height="52px"; 
}

function fBlocMouseOut(id) {
 document.getElementById(id).style.borderColor="#C0C0C0"
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)+1) +"px";
 document.getElementById(id).style.width="68px";
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)+1) +"px";
 document.getElementById(id).style.height="50px";
}

function fImgClick(id) {
 //document.getElementById("ctl00_ContentPlaceHolder1_FormView1_photo").src = document.getElementById(id).src.replace("/p/","/g/");
alert(document.getElementById(id).id);
}
