function myOver(which)
{
window.document.getElementById(which).style.backgroundColor="#1e3a79";
window.document.getElementById(which).style.color="#f68121";
window.document.getElementById(which+".1").style.display= "block";
}
function myOut(which)
{
window.document.getElementById(which).style.backgroundColor="#1e3a79";
window.document.getElementById(which).style.color="#d1eefc";
window.document.getElementById(which+".1").style.display= "none";
}
function lonely_over(who)
{
window.document.getElementById(who).style.backgroundColor="#1e3a79";
window.document.getElementById(who).style.color="#f68121";
}
function lonely_out(who)
{
window.document.getElementById(who).style.backgroundColor="#1e3a79";
window.document.getElementById(who).style.color="#d1eefc";
}
function myTrayDivOver(which)
{
main=""+which;
main=main.substr(0,main.indexOf("."));
window.document.getElementById(main).style.backgroundColor="#1e3a79";
window.document.getElementById(main).style.color="#f68121";
window.document.getElementById(which).style.display= "block";
}
function myTrayDivOut(which)
{
main=""+which;
main=main.substr(0,main.indexOf("."));
window.document.getElementById(main).style.backgroundColor="#1e3a79";
window.document.getElementById(main).style.color="#d1eefc";
window.document.getElementById(which).style.display= "none";
}
function myDivOver(which)
{
main=""+which;
main=main.substr(0,main.indexOf("."));
window.document.getElementById(main).style.backgroundColor="#1e3a79";
window.document.getElementById(main).style.color="#d1eefc";
window.document.getElementById(which).style.color="#f68121";
}
function myDivOut(which)
{
main=""+which;
main=main.substr(0,main.indexOf("."));
window.document.getElementById(main).style.backgroundColor="#1e3a79";
window.document.getElementById(main).style.color="#f68121";
window.document.getElementById(which).style.color="#d1eefc";
}
function goAhead(where,who)
{
window.document.getElementById("fo01").src=where;
window.document.getElementById('whereAmI').innerHTML=window.document.getElementById(who).innerHTML;
}
function goAheadImage(where,who)
{
if (who=='openwindow')
{
window.open(where,"","width=800, height=600, screenX=10, screenY=10, scrollbars=yes, menubar=yes resizable=yes");
}
else
{
window.document.getElementById("fo01").src=where;
window.document.getElementById('whereAmI').innerHTML=who;
}
}

