function toggleVisibility(id, NNtype, IEtype, W3Ctype) {
if (document.getElementById) {
eval("document.getElementById(id).style.visibility = \"" + W3Ctype + "\"");
} else {
if (document.layers) {
document.layers[id].visibility = NNtype;
} else {
if (document.all) {
eval("document.all." + id + ".style.visibility = \"" + IEtype + "\"");

}
}
}
}

function toggleForm(id, Haut) {
if (document.getElementById) {
eval("document.getElementById(id).style.top = \"" + Haut + "\"");
} else {
if (document.layers) {
document.layers[id].top = Haut;
} else {
if (document.all) {
eval("document.all." + id + ".style.top = \"" + Haut + "\"");

}
}
}
}
