//Definition of graphical links

button_0on = new Image(); button_0on.src = "../abb/fr/n0b.gif"; button_0off = new Image(); button_0off.src = "../abb/fr/n0a.gif";
button_1on = new Image(); button_1on.src = "../abb/fr/n1b.gif"; button_1off = new Image(); button_1off.src = "../abb/fr/n1a.gif";
button_2on = new Image(); button_2on.src = "../abb/fr/n2b.gif"; button_2off = new Image(); button_2off.src = "../abb/fr/n2a.gif";
button_3on = new Image(); button_3on.src = "../abb/fr/n3b.gif"; button_3off = new Image(); button_3off.src = "../abb/fr/n3a.gif";
button_4on = new Image(); button_4on.src = "../abb/fr/n4b.gif"; button_4off = new Image(); button_4off.src = "../abb/fr/n4a.gif";
button_5on = new Image(); button_5on.src = "../abb/fr/n5b.gif"; button_5off = new Image(); button_5off.src = "../abb/fr/n5a.gif";
button_6on = new Image(); button_6on.src = "../abb/fr/n6b.gif"; button_6off = new Image(); button_6off.src = "../abb/fr/n6a.gif";
button_7on = new Image(); button_7on.src = "../abb/fr/n7b.gif"; button_7off = new Image(); button_7off.src = "../abb/fr/n7a.gif";
button_8on = new Image(); button_8on.src = "../abb/fr/n8b.gif"; button_8off = new Image(); button_8off.src = "../abb/fr/n8a.gif";
button_9on = new Image(); button_9on.src = "../abb/n9b.gif"; button_9off = new Image(); button_9off.src = "../abb/n9a.gif";

//Function for showing the image for MouseOver
function button_on(myname)
{
                imgOn = eval(myname + "on.src");
                document[myname].src = imgOn;      
}

//Function for showing the image for MouseOut
function button_off(myname)
{
                imgOff = eval(myname + "off.src");
                document[myname].src = imgOff;
        
}
