function Hide(d) 
{
    if(d.length < 1) { return; }
    document.getElementById(d).style.display = "none";
}

function Show(d) 
{
    if(d.length < 1) { return; }
    document.getElementById(d).style.display = "block";
}
