/* General */

function OpenWindow(strURL,strName,varParams) {
    window.open(strURL,strName,varParams);
}

function SubmitForm(strFormName) {
    document.getElementById(strFormName).submit()
}

function HighlightDefaultSection(strSectionID,strBorderColor) {
    var objSection;
    objSection=document.getElementById(strSectionID);
    objSection.style.borderBottom='3px solid '+strBorderColor;
}

/* End */
