function dispenseArticles()
{
  var i = 0;
  var arr = new Array();
  var art = null;



 escort = new Object(); arr[i++] = escort;
    escort.stagename = "YOU!!  - What are you waiting for?";
    escort.page  = "EscortDesign.No1in.US/contacts.php";
    escort.city  = "Your City";  
  escort = new Object(); arr[i++] = escort;
    escort.stagename = "Paladina - Classic Courtesan";
    escort.page  = "Paladina.net";
    escort.city  = "Orlando"; 
  escort = new Object(); arr[i++] = escort;
    escort.stagename = "Suzzane - more than a GFE ... lots more!!";
    escort.page  = "Suzzane.net";
    escort.city  = "Atlanta";  
 escort = new Object(); arr[i++] = escort;
    escort.stagename = "Eve - Eve's Apples  -  Chicago's tightest ";
    escort.page  = "EvesApples.US";
    escort.city  = "Chicago";  
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Lexi Sinclair";
    escort.page  = "SFLexi.com";
    escort.city  = "San Francisco";  
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Barbie Bitch Tampa's Domme";
    escort.page  = "BarbieBitch.com";
    escort.city  = "Tampa";  
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Angel Brown";
    escort.page  = "AngelBrownEscorts.com";
    escort.city  = "El Paso";     
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Emilysa - Bombshell ready to make you explode!";
    escort.page  = "Emilysa.com";
    escort.city  = "Houston";   
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Cyber Dommes ";
    escort.page  = "CyberDommes.com";
    escort.city  = "New York";   
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Sure Date ";
    escort.page  = "SureDate.No1in.US";
    escort.city  = "Carson City";   
escort = new Object(); arr[i++] = escort;
    escort.stagename = "Coed Dates";
    escort.page  = "CoedDates.com";
    escort.city  = "Orlando";   
/* 
escort = new Object(); arr[i++] = escort;
    escort.stagename = "";
    escort.page  = "";
    escort.city  = "";      

	*/



  if (typeof showbox == "undefined") showbox = true;
  if (typeof showbullets == "undefined") showbullets = true;
  if (typeof showdates == "undefined") showdates = true;
  if (typeof fontface == "undefined") fontface = "helvetica, arial";
  if (typeof fontsize == "undefined") fontsize = "1";
  if (typeof boxcolor == "undefined") boxcolor = "#9e9e9e";
  if (typeof boxbgcolor == "undefined") boxbgcolor = "#ffffff";
  if (typeof boxtextcolor == "undefined") boxtextcolor = "#ffffff";
  if (typeof boxwidth == "undefined") boxwidth = "300";
  if (typeof articlecount == "undefined")
    articlecount=12; 
  
  if (articlecount>arr.length)
    articlecount=arr.length; 

  var url  = "http://";
  var ball = /*url + */ "widgets/ball.gif";
  var bullet = "<td valign='baseline' width='18'><img src='" + ball + "' width='8' height='10' hspace='10'></td>";
  if (showbullets==false) bullet="";

  var style = "";
  if (navigator.appName.indexOf("Netscape") == -1)
  {
    if (typeof linkcolor != "undefined")
      style += "a.dispenser {color:" + linkcolor + "}\n";

    if (typeof linkunderline != "undefined")
      if (linkunderline==true) 
        style += "a.dispenser {text-decoration:underline}\n";
      else
        style += "a.dispenser {text-decoration:none}\n";

    if (typeof linkcolorover != "undefined")
      style += "a.dispenser:hover {color:" + linkcolorover + "}\n"; 

    if (typeof linkunderlineover != "undefined")
      if (linkunderlineover==true) 
        style += "a.dispenser:hover {text-decoration:underline}\n";
      else
        style += "a.dispenser:hover {text-decoration:none}\n";

    if (style != "")
      style = "<style type='text/css'>\n" + style + "</style>\n";
  }

  var str = "<font face='" + fontface + "'>\n";
  str += "<table border='0' cellpadding='0' cellspacing='2' width='" + boxwidth + "'>";
  for (var i=0; i<articlecount; i++)
  {
    str += "<tr>" + bullet + "<td valign='top' width='100%'><font size='" + fontsize + "'>";
    str += "<a class=dispenser href='" + url + arr[i].page + "' target=_blank><b>" + arr[i].stagename + "</b></a><br></font>";
    if (showdates)
      str += "<font size='1'><em>" + arr[i].city + "</em></font>";
    else
      str += "<font size='1'>&nbsp;</font>"; 
    str += "</td></tr>\n";
  }
  str += "</td></tr></TABLE>";

  if (showbox) 
    str = "<table width='" + boxwidth + "' border='0' cellspacing='1' bgcolor='" + boxcolor + "'> <tr> <td align='center'><font face='" + fontface + "' color='" + boxtextcolor + "' size='" + fontsize + "'><strong>Our Top Escort Clients!  </strong></font></td> </tr> <tr> <td bgcolor='" + boxbgcolor + "' width='100%'>\n" + str + "\n</td></tr></TABLE>\n";

  str = style + str;

  document.writeln(str); 
}

