<!--
function buttonFlip ( imageRoot )
{
if (document.images) {
x = imageRoot.lastIndexOf("_");
buttonName = imageRoot.substr(0,x) + "_button";
// alert ("imageRoot = " + imageRoot + " last index = " + x + " buttonName = " + buttonName);
document.images[buttonName].src = eval ( imageRoot + ".src");
}
}
// -->
