 if (document.images)
 {
     front01="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/a/integra/featured/car01/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Chad's 1996 Acura Integra Type-R with too many mods to list here. Here's a <a href=integra_car01.shtml>mod list</a> of all he's done.<br><br>**<a href=integra_addmycar.shtml>Click Here</a> to get your Integra added to MVP's website!</small><p>";
     front02="<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><center><img src=catalog/jdm/a/integra/featured/car02/frontpic.jpg></center></td></tr></table><p><small>MVP Customer, Yoshi's 1996 Acura Integra LS with too many mods to list here. Here's a <a href=integra_car02.shtml>mod list</a> of all he's done.<br><br>**<a href=integra_addmycar.shtml>Click Here</a> to get your Integra 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(2);  
  pick_one--;

  var front= new Array(2)
   front[0]=front01;
   front[1]=front02;

  document.write(front[pick_one]);
 }
}