
function randOrd(a, b)
  { return (Math.round(Math.random())-0.5); } 
  
function showTest(ListAmt)
{
  for (i=0; i<ListAmt; i++)
 {
   document.write("<p>");
   document.write(textset[i]);
   document.write("</p>");
 }
}  
 
textset.sort( randOrd );


