
<!--//
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]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>Like this website? Let us build yours. Interactivity, database driven, easy to manage <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
   quote[1]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>Applications/Software custom made for you. We build all types of applications for the internet <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
   quote[2]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>Want a database driven website, with custom features. Managed by non-programmers, easy to use <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
   quote[3]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>Interactive websites, attract customers, want one? Imagine how much more people will respond if they can interact with your website. <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
   quote[4]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>Like this feature, let us build one for you. We build custom features from component parts. <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
   quote[5]="<p style='margin-left:5px'><img src='http://www.mikesart.net/images_master/ad_images/get_your_own.gif'><br clear=all><font face=arial size=1>The author of this site want's to build your site. We partner with you for promotion too. <a href='http://www.mikesart.net/ps/contact.html'>Click here....</a></p>";
document.write(quote[whichQuote]);
}
getaQuote();

//-->







