function changeAllImages(leftname,topname)
{
	if ( top.contentframe.leftnav.changeNavImg )
	{
		setTimeout("top.contentframe.leftnav.changeNavImg('"+leftname+"')",100);
	}
	if ( top.topframe.changeNavImg )
	{
		setTimeout("top.topframe.showNavigation('"+leftname+"')",100);
		setTimeout("top.topframe.changeNavImg('"+topname+"')",100);
	}
	else
	{
		setTimeout("changeAllImages('"+leftname+"','"+topname+"');",100);
	}
}
function loseFocus()
{
	top.focus();
}
this.onfocus=loseFocus;
