  function more(id)
// Function that will swap the display/no display for
// all content within span tags
{
divin='more'+id;
if (document.getElementById(divin).style.display == "none")
{
document.getElementById(divin).style.display = "";
}
else
{
document.getElementById(divin).style.display = "none";
}
}
function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite
      ("http://www.racingvideoz.com","RacingVideoz.com")
      }
   }