// RandomBanner v1.0
// By Boyd Edmondson.  Copyright 2001 Nebula Software  (www.NebulaSoftware.com)



function RandomBanner ()
{  // Randomly choose and return HTML code for a banner and link

  var choicesArray = new Array (


// ATL Ultrasound
"<A HREF=\"http://www.medical.philips.com/us\" target=\"_top\">  <IMG SRC=\"../images/ClientLogos/Philips.gif\" ALIGN=\"top\">  </IMG></A>",


// Magic Box Inc.
"<A HREF=\"http://www.MagicBoxInc.com\" target=\"_top\">  <IMG SRC=\"../images/ClientLogos/MagicBox.gif\" ALIGN=\"top\">  </IMG></A>",

// Kaufman Chiropractic
"<A HREF=\"http://www.kaufmanchiropractic.com\" target=\"_top\">  <IMG SRC=\"../images/ClientLogos/KaufmanChiropractic.jpg\" ALIGN=\"top\">  </IMG></A>",

// Scott Lobato
"<IMG SRC=\"../images/ClientLogos/ScottLobato.jpg\" ALIGN=\"top\">  </IMG>",

// Applied Precision, LLC
"<A HREF=\"http://www.API.com\" target=\"_top\">  <IMG SRC=\"../images/ClientLogos/AP.gif\" ALIGN=\"top\">  </IMG></A>",

// Verasonics, Inc.
"<A HREF=\"http://www.Verasonics.com\" target=\"_top\">  <IMG SRC=\"../images/ClientLogos/VSL_T_BG_142x116x5.gif\" ALIGN=\"top\">  </IMG></A>"

   );  // end of choicesArray


   return choicesArray [ Math.floor ( Math.random() * choicesArray.length)];

}  // end  RandomBanner()

