function isHomePage()
{
  var path = location.pathname ;
  var href = location.href ;
  if ( path == '' )
    return true ;
  else if ( path == '/' )
    return true ;
  else if ( path == '/wp-srv/front.htm' )
    return true ;
  else if ( href == 'http://www.washingtonpost.com' )
    return true ;
  else if ( href == 'http://www.washingtonpost.com/' )
    return true ;
  else if ( href == 'http://www.washingtonpost.com/wp-srv/front.htm' )
    return true ;
  else
    return false ;
}
