﻿


/* GENERAL */

function ToggleDisplay(DivID) {
    var div = document.getElementById(DivID);
    if (div.style.display == "none") {
        div.style.display = "block";
    } else {
        div.style.display = "none";
    }
}


function PopUpLink(Url, Title, Width, Height) {
    window.open(Url, Title, 'menubar=0,resizeable=1,scrollbars=1,width=' + Width + ',height=' + Height);
}


function Trim(Value) {
    return Value.replace(/^\s+|\s+$/g, "");
}
