﻿function addLoadEvent(func) { 
    var oldonload = window.onload; 
    if (typeof window.onload != 'function') { 
        window.onload = func; 
    } 
    else { 
        window.onload = function() { 
            oldonload(); 
            func();
        } 
    } 
} 
            
function Btn_RSSMenu() {
    var o_BtnRedRSS = document.getElementById("BtnRedRSS");
    var o_DIV_ItemsRSS = document.getElementById("DIV_ItemsRSS");
    if (o_BtnRedRSS && o_DIV_ItemsRSS) {
        o_BtnRedRSS.onmouseover = function() {
            o_DIV_ItemsRSS.style.visibility = "visible";
            procesarEvento(o_DIV_ItemsRSS,"visible");
        }
        o_BtnRedRSS.onmouseout = function() {
            procesarEvento(o_DIV_ItemsRSS,"hidden");
        }
        o_DIV_ItemsRSS.onmouseover = function() {
            procesarEvento(o_DIV_ItemsRSS,"visible");
        }
        o_DIV_ItemsRSS.onmouseout = function() {
            procesarEvento(o_DIV_ItemsRSS,"hidden");
        }
    }
}    
function procesarEvento() {
    var args = procesarEvento.arguments;
    args[0].style.visibility = args[1];	
}