 if (document.images)
 {
     front01="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/mi/evo8/featured/car01/frontpic.jpg></center></td></tr></table><p><small>MVP Friend, DJ Reasoner's 2004 EVO VIII.  <br><br>**<a href=evoviii_addmycar.shtml>Click Here</a> to get your EVO VIII added to MVP's website!</small><p>";
     front02="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/mi/evo8/featured/car02/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Tim's 2004 EVO VIII with too many mods to list here. Here's a <a href=evoviii_car02.shtml>mod list</a> of all he's done.<br><br>**<a href=evoviii_addmycar.shtml>Click Here</a> to get your EVO VIII added to MVP's website!</small><p>";
     front03="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/mi/evo8/featured/car03/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Peter's EVO VIII with too many mods to list here. Here's a <a href=evoviii_car03.shtml>mod list</a> of all he's done.<br><br>**<a href=evoviii_addmycar.shtml>Click Here</a> to get your EVO VIII added to MVP's website!</small><p>";
     front04="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/mi/evo8/featured/car04/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Joseph's EVO VIII with too many mods to list here. Here's a <a href=evoviii_car04.shtml>mod list</a> of all he's done.<br><br>**<a href=evoviii_addmycar.shtml>Click Here</a> to get your EVO VIII added to MVP's website!</small><p>";
     front05="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/mi/evo8/featured/car05/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Edgardo's 2005 EVO VIII with too many mods to list here. Here's a <a href=evoviii_car05.shtml>mod list</a> of all he's done.<br><br>**<a href=evoviii_addmycar.shtml>Click Here</a> to get your EVO VIII added to MVP's website!</small><p>";
 }    

function get_random(mNum)
{
  if (Math.random && Math.round)
  {
    var rNum= Math.round(Math.random()*(mNum-1));
    rNum+=1;
    return rNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var rNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return rNum;
  }
}

function get_frontpics()
{
 if (document.images)
 {
  var pick_one= get_random(5);  
  pick_one--;

  var front= new Array(5)
   front[0]=front01;
   front[1]=front02;
   front[2]=front03;
   front[3]=front04;
   front[4]=front05;

  document.write(front[pick_one]);
 }
}