function imageSwap(sImgName, sImgSrc) {
 parent.document.images[sImgName].src = sImgSrc;
}

function rollover(lButton, bState) {
 imageSwap("button" + lButton, "images/button" + lButton + "-" + bState + ".gif");
}