document.write('
![]() | Loading... |
';
if(document.getElementById("TdPageTop"))
{
document.getElementById("TdPageTop").innerHTML=Text;
}
//Member Menu end
document.write('');
function SetLang(i)
{
document.getElementById("InputLangID").value=i;
document.getElementById("FormSwitchLanguage").submit();
}
function AddOnloadFunction(AddFunction)
{
// incredibly funky onload add-event scripting, for all browsers
if(typeof window.addEventListener != 'undefined')
{
//.. gecko, safari, konqueror and standard
window.addEventListener('load', AddFunction, true);
}
else if(typeof document.addEventListener != 'undefined')
{
//.. opera 7
document.addEventListener('load', AddFunction, true);
}
else if(typeof window.attachEvent != 'undefined')
{
//.. win/ie
window.attachEvent('onload', AddFunction);
}
//** remove this condition to degrade older browsers
else
{
try
{
window.onload = AddFunction;
}
catch(e)
{
window.body.onload = AddFunction;
}
}
}
function SwitchLangCatMenu(i)
{
document.getElementById("DivLangContent1").style.display="none";
document.getElementById("DivLangContent0").style.display="none";
document.getElementById("TdLangMenu1").className="TdSL3";
document.getElementById("TdLangMenu0").className="TdSL3";
document.getElementById("TdLangMenu"+i).className="TdSL2";
document.getElementById("DivLangContent"+i).style.display="";
}