function fBlocMouseOver(id, width) {
 document.getElementById(id).style.borderColor="#ffffff";
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)-1) +"px";
 document.getElementById(id).style.width=(width?width+2+"px":"62px");
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)-1) +"px";
 document.getElementById(id).style.height="42px";
}
function fBlocMouseOut(id, width) {
 document.getElementById(id).style.borderColor="#C0C0C0"
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)+1) +"px";
 document.getElementById(id).style.width=(width?width+"px":"60px");
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)+1) +"px";
 document.getElementById(id).style.height="40px";
}
/*function fImgMouseOver(id) {
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)-1) +"px";
 document.getElementById(id).style.width=(parseInt(document.getElementById(id).style.width)+2) +"px";
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)-1) +"px";
 document.getElementById(id).style.height=(parseInt(document.getElementById(id).style.height)+2) +"px";
}
function fImgMouseOut(id) {
 document.getElementById(id).style.left=(parseInt(document.getElementById(id).style.left)+1) +"px";
 document.getElementById(id).style.width=(parseInt(document.getElementById(id).style.width)-2) +"px";
 document.getElementById(id).style.top=(parseInt(document.getElementById(id).style.top)+1) +"px";
 document.getElementById(id).style.height=(parseInt(document.getElementById(id).style.height)-2) +"px";
}*/
function fImgClick(id, zoom, divlegende, legende) {
 //alert(document.getElementById(id).src.replace("v","p"));
 document.getElementById(zoom).src = document.getElementById(id).src.replace("v","p");
 document.getElementById(divlegende).innerHTML = legende;
}