﻿function doShow(p)
{
o1=document.getElementById("menu2");
if(ss && o1 && p>=0)
{
o1.innerHTML=ss[p];
}
}

function goFlash(p)
{
o2=document.getElementById("flashmenu");
if (o2)
{
//alert(o2.children[0].GotoFrame);
//if(typeof(o2.children)!="undefined" && o2.children[0])
//{
//    try {o2.children[0].GotoFrame(p+2);} catch(e) { }
//    }
//    else
//    try {o2.GotoFrame(p+2);} catch(e) { }
            try {o2.GotoFrame(p+2);} catch(e) { }
            try {o2.childNodes[0].GotoFrame(p+2);} catch(e) { }
}
}

function ShowHide(p)
{
sub=p.parentNode.parentNode.getElementsByTagName('div')[1];
if(sub)
{
sub.style.display=(sub.style.display=='none'?'block':'none');
}
}
