function getElement(id) 
{
    if (document.getElementById)
        return document.getElementById(id);
    if (document.all) 
        return document.all(id);
    
    return null;
}