
<!--//
function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= tod
ay.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}
function getaQuote()
{
 var maxQuotes=6;
 var whichQuote=get_random(maxQuotes);
 whichQuote--;
var quote=new Array(maxQuotes)
   quote[0]="<font face=arial size=1>Like this website? Let us build yours. <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";
   quote[1]="<font face=arial size=1>Applications/Software custom made for you. <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";
   quote[2]="<font face=arial size=1>Database driven websites, with custom features. <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";
   quote[3]="<font face=arial size=1>Interactive websites, attract customers, want one? <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";
   quote[4]="<font face=arial size=1>Like this feature, let us build one for you. <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";
   quote[5]="<font face=arial size=1>The author of this site want's to build your site. <a href='http://www.mikesart.net/ps/about.php?about=contact'>Click here....</a>";

document.write(quote[whichQuote]);
}
getaQuote();

//-->






