function addEvent(o_Obj,s_event_type,o_function)
{if(o_Obj.addEventListener){o_Obj.addEventListener(s_event_type,o_function,false);}else if(o_Obj.attachEvent){o_Obj["e"+s_event_type+o_function]=o_function; o_Obj[s_event_type+o_function]=function(){o_Obj["e"+s_event_type+o_function](window.event);}
o_Obj.attachEvent("on"+s_event_type,o_Obj[s_event_type+o_function]);}}


