/**
 * IE4 support getElementById as specified by W3C
 *
 * @author : ±èÇü¼· <todayis@offton.co.kr>
 * @date   : 2007³â 1¿ù 15ÀÏ
 */

if(document.all && !document.getElementById)
{
    document.getElementById = new Function("id", "return document.all[id]");
}


