/*added by ej on 1/26/2007*/
function showDiv(ediv) {
    ediv.style.display = 'inline';
}

function hideDiv(ediv) {
    ediv.style.display = 'none';
}

onload = function () {
    var img = document.getElementById('imgLogo');

    if (img != null) {
        var gd = document.getElementById('divGoDaddy');
        var ref = document.getElementById('gdCloseRef');
        img.onclick = function () {
            showDiv(gd);
        }

        ref.onclick = function () {
            hideDiv(gd);
        }
    }
}

function popupform(myWindow, windowname, width, height, toolbar, statusbar, menubar) {
    window.open(myWindow, windowname, 'height=' + height + ',width=' + width + ',scrollbars=yes,toolbar=' + toolbar + ',status=' + statusbar + ',menubar=' + menubar);
    myWindow.target = windowname;
    return true;
}
/*END added by ej*/
