﻿
/*
 * Start functions associated with external-links.ascx
 */

function showMessageBox(messageBoxID) {
    document.getElementById(messageBoxID).style.visibility = "visible";
}

function hideMessageBox(messageBoxID)
{
    document.getElementById(messageBoxID).style.visibility = "hidden";
}

function showStatus(sMsg) 
{
    window.status = sMsg;
    return true ;
}

function gotoLink(messageBoxID, linkURL)
{
    hideMessageBox(messageBoxID);
    window.open(linkURL);
}

/*
 * End functions associated with external-links.ascx
 */
