var gc_gen_pgu___Texto_Estatus_PD = "";
function gen_pgu__Existe(vElemento)
{
return (typeof(vElemento) != "undefined");
}
function gen_pgu__Est_Texto_Estatus(cTexto)
{
if (gen_pgu__Existe(window.status))
{
window.status = cTexto;
}
return true;
}
function gen_pgu__Est_Texto_Estatus_PD()
{
return gen_pgu__Est_Texto_Estatus(gc_gen_pgu___Texto_Estatus_PD);
}
function gen__EstClaseElem(cID, cCSS)
{
var	oElem;		
if (document.getElementById)
{
if ((oElem = document.getElementById(cID)) != null)
{
oElem.className = cCSS;
}
}
}
function gen__Control_Encima(cID, cCSS, cEstatus)
{
gen__EstClaseElem(cID, cCSS);
gen_pgu__Est_Texto_Estatus(cEstatus);
}
function gen__Control_Fuera(cID, cCSS)
{
gen__EstClaseElem(cID, cCSS);
gen_pgu__Est_Texto_Estatus_PD();
}
function gen__Control_Pinchado(cID, cCSS, cEstatus)
{
gen__EstClaseElem(cID, cCSS);
gen_pgu__Est_Texto_Estatus(cEstatus);
}
function gen_pgu__Est_OnMouseOut_PD()
{
gen_pgu__Est_Texto_Estatus_PD();
return true;
}
function gen_pgu__Est_OnMouseOver_PD()
{
if (this.title)
{
gen_pgu__Est_Texto_Estatus(this.title);
}
return true;
}
function gen_pgu__Est_Eventos_PD()
{
var aoEnlaces;
var i;
if (document.getElementsByTagName)
{
aoEnlaces = document.getElementsByTagName('A');
for (var i=0; i<aoEnlaces.length; i++)
{
aoEnlaces[i].onmouseover = gen_pgu__Est_OnMouseOver_PD;
aoEnlaces[i].onmouseout = gen_pgu__Est_OnMouseOut_PD;
}
}
}
function gen_pgu__AlCargar()
{
gen_pgu__Est_Texto_Estatus_PD();
gen_pgu__Est_Eventos_PD();
return true;
}
