<!--
// This function writes repetitive characters, strings, and/or HTML tags in a web page.
//
// 1. Save this script as "put.js" in the same folder as the HTML document file.
// 2. Insert the following between the <HEAD> and </HEAD> tags of the HTML document: 
//       <script language="javascript" src="put.js"></script>
// 3. Insert this script in the HTML document where repetition is needed: 
//       <script>put(n,c)</script>
// 4. Replace the argument "n" (above) with the number of repetitions you want.
// 5. Replace the argument "c" (above) with character(s)/HTML code enclosed in single quotes.
//    Three examples of "c": (1) '&nbsp;' (2) '<img src=\"pie.gif\">' (3) '*Hello* '
//
// Do not edit below this line:

   var n;
   var c;
   function put(n,c){
      sp = ""
      for (i=0; i<n; i++){sp += c}
      document.write(sp);
   }

// Written by Paul Proft, http://proft.50megs.com
//-->