﻿function masterBtn_OnMouseOver(objButton) {
    objButton.src = objButton.src.replace(".png", "_over.png");
}

function masterBtn_OnMouseOut(objButton) {
    objButton.src = objButton.src.replace("_over.png", ".png");
}


function poptastic(url) {
    newwindow = window.open(url, 'name', 'height=512,width=640,scrollbars=1');
    if (window.focus) { newwindow.focus() }
}

