/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function _core_GetObj(i_ID)
{
    return document.getElementById(i_ID);
}


function _core_Serialize(i_objVars)
{
    var l_arrVars   =   new Array();

    for(var inc_Key in i_objVars)
    {
        l_arrVars.push(inc_Key + "=" + i_objVars[inc_Key]);
    }

    return l_arrVars.join("&");
}

