﻿


/* 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, "");
}

/* NDM WALLPAPER OBJECT */

if ( typeof ndm == "undefined") { ndm = {}; }
if ( typeof ndm.controls == "undefined") { ndm.controls = {}; }
if ( typeof ndm.controls.wallpaper == "undefined") { ndm.controls.wallpaper = {}; }
if ( typeof ndm.controls.wallpaper.apply == "undefined") 
{
	ndm.controls.wallpaper.apply = function(a) 
	{
		document.body.style.background = "url(" + a + ") top center no-repeat";
	}
}
