function GetSideWidth()
{
        var x = 0;
	var side=0;
        if (self.innerHeight)
        {
                x = self.innerWidth;
        }
        else if (document.documentElement && document.documentElement.clientHeight)
        {
                x = document.documentElement.clientWidth;
        }
        else if (document.body)
        {
                x = document.body.clientWidth;
        }
	side=x-900;
	if(side>0){return(side/2);}
	else return 0;
}


function barMouseLeave(bId)
{
document.getElementById(bId).style.color='#DDDDDD';
}


function barMouseOver(bId)
{
document.getElementById(bId).style.color='#4EAAEF';
}


function barClick(bId)
{
  if(bId=='navHome')window.location="http://www.adoptinginternationally.com/index.php";
  else if(bId=='navEv')window.location="http://www.adoptinginternationally.com/evidence.php";
  else if(bId=='navLegal')window.location="http://www.adoptinginternationally.com/legalcontext.php";
  else if(bId=='navCorrupt')window.location="http://www.adoptinginternationally.com/corruption.php";
  else if(bId=='navArt')window.location="http://www.adoptinginternationally.com/literature.php";
  else if(bId=='navHelp')window.location="http://www.adoptinginternationally.com/whattodo.php";
  else if(bId=='navLink')window.location="http://www.adoptinginternationally.com/links.php";
  else if(bId=='navContact')window.location="http://www.adoptinginternationally.com/contact.php";

}