<!--
function Load_Footer(targetElement){
  /* To Add a container for a multiple lists of items
   * new inlineList(bgcolor, border, cellpadding, cellspacing, height, width, classname, style)
   */
  var footerList = new inlineList(null,0,0,0,23,'100%','footerElements');
  
  /* To Add a container for a single list of items
   * MainObject.Add(bgcolor, border, cellpadding, cellspacing, height, width, align, valign, orientation, onnewline, classname, style)
   */
  with(footerList.Add(null,0,0,0,null,null,"left","center","horz",false,"footerList")){
    /* To Add an item to the list
     * ListObject.Add(text, href, src, title, imgalign, bgcolor, height, width, align, classname, style)
     */
    Add("Sitemap","http://www.versifit.com/utilities/site_map.asp");
    Add("|",null,null,null,null,null,null,null,null,"spacer");
    Add("Contact Us","http://www.versifit.com/utilities/contact_us.asp");
  }
  if (targetElement)
    footerList.Write(targetElement);
}
//-->