﻿
/* 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,"");
}

/* This function is req'd for all pages that use
the NonCMS master page */
function OnResponseEnd(sender, args){
    OnNextClick();
}

function GetParameterByName(strName){
    var params = document.URL.split('?')[1].split('&');
    
    for(var i=0; i<params.length; i++){
        if (params[i].split('=')[0] == strName){
            params = params[i].split('=')[1];
            break;
        }
    }
    
    return params;
}