function moveStuff(from, to)
{
    if(!document.getElementById){/*alert('Your Browser Does Not Support getElementById()');*/ return;}
    fromDiv = document.getElementById(from);
    toDiv = document.getElementById(to);
    if(!fromDiv || !toDiv){if (!fromDiv) toDiv.innerHTML = "&#160;"; return;}
    toDiv.appendChild(fromDiv);
    fromDiv.style.display = 'block';
}

