The Renal Network - 911 E. 86th Street, Suite 202, Indianapolis IN 46240
For more information call 317-257-8265 (bus) or 317-257-8291 (fax) or Email to: [email protected]
function turnOn(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + 'on.src');
}
}
function turnOff(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + 'off.src');
}
}
function turnSel(imageName) {
if (document.images) {
document[imageName].src = eval(imageName + 'sel.src');
}
}
// -->