
            /* FillDiv() is used to fill the Side bar with news 
             * and information feeds from feed.xml
             * Feed.xml and FillDiv() still needs work get up to RSS standard
             * by the way This code was borrowed and adapted from http://www.creativyst.com 
             * by forum members JRepici and Stevo.   
             */


function FillDiv()
{
    Document = dsoWF.XMLDocument;   /* CMLDocument is the document element */

    myHTML = "";
   
    for(    i = 0;
            i < Document.documentElement.childNodes.length;
            i++) {

        /* Side by side logic
        */
        if( !(i % 2) ) {
            myHTML += "";
        }


       

        
        if(Document.documentElement.childNodes(i).childNodes) {

            
            myHTML += "<a href=";
            myHTML += 
                    Document.documentElement.childNodes(i).childNodes(2).text;
			myHTML += ">\n";

            myHTML += 
                    Document.documentElement.childNodes(i).childNodes(0).text;
            myHTML += "<br>\n";
            myHTML += "<font color= black>";
            myHTML += 
                    Document.documentElement.childNodes(i).childNodes(1).text;
            myHTML += "</font><BR>\n";
            myHTML += "<a>\n";
            myHTML += "<P>\n";

        }
        else {
            myHTML += "";
        }

        myHTML += "\n";


        if( (i % 2) ) {
            myHTML += "";
        }

    }
    if( (i % 2) ) {
        myHTML += "";
    }

   


    myDiv.innerHTML = myHTML;
}
//  End -->

            /* Start() is used to bypass the browsers ability 
             *to only load one function at a time 
             */


function start() {
  javascript:runSlideShow();
  FillDiv();
  }
//  End -->
