         function voteStar(content)
          {
            var xyz = document.getElementById ("showstar");
            xyz.innerHTML = "Rate this article: <i>"+content+"</i>";

            var st1 = document.getElementById("star1");
            var st2 = document.getElementById("star2");
            var st3 = document.getElementById("star3");
            var st4 = document.getElementById("star4");
            var st5 = document.getElementById("star5");

            if (content == "bad")
             {
              st1.src = "pic/moneytree-star1.jpg";
              st2.src = "pic/moneytree-star0.jpg";
              st3.src = "pic/moneytree-star0.jpg";
              st4.src = "pic/moneytree-star0.jpg";
              st5.src = "pic/moneytree-star0.jpg";
             }
            if (content == "adequat")
             {
              st1.src = "pic/moneytree-star1.jpg";
              st2.src = "pic/moneytree-star2.jpg";
              st3.src = "pic/moneytree-star0.jpg";
              st4.src = "pic/moneytree-star0.jpg";
              st5.src = "pic/moneytree-star0.jpg";
             }
            if (content == "average")
             {
              st1.src = "pic/moneytree-star1.jpg";
              st2.src = "pic/moneytree-star2.jpg";
              st3.src = "pic/moneytree-star3.jpg";
              st4.src = "pic/moneytree-star0.jpg";
              st5.src = "pic/moneytree-star0.jpg";
             }
            if (content == "good")
             {
              st1.src = "pic/moneytree-star1.jpg";
              st2.src = "pic/moneytree-star2.jpg";
              st3.src = "pic/moneytree-star3.jpg";
              st4.src = "pic/moneytree-star4.jpg";
              st5.src = "pic/moneytree-star0.jpg";
             }
            if (content == "excellent")
             {
              st1.src = "pic/moneytree-star1.jpg";
              st2.src = "pic/moneytree-star2.jpg";
              st3.src = "pic/moneytree-star3.jpg";
              st4.src = "pic/moneytree-star4.jpg";
              st5.src = "pic/moneytree-star5.jpg";
             }
            if (content == "")
             {
              st1.src = "pic/moneytree-star0.jpg";
              st2.src = "pic/moneytree-star0.jpg";
              st3.src = "pic/moneytree-star0.jpg";
              st4.src = "pic/moneytree-star0.jpg";
              st5.src = "pic/moneytree-star0.jpg";
             }
          }

	function scrollDiv(strId,intSpd) {
		if ( objScrll=document.getElementById(strId) ) {
			var top = parseInt(objScrll.style.top);
			if ( (intSpd>0) ? (top<0) : (top>parseInt(objScrll.parentNode.style.height)-objScrll.offsetHeight) )
				objScrll.style.top = (top + intSpd) +"px";
			eval( 'tvar' + strId +'= setTimeout("scrollDiv(\''+ strId +'\',' + intSpd + ')",50)' );
			if (objSelf=scrollDiv.arguments[2])
				objSelf.onmouseup = objSelf.onmouseout = new Function('fx','clearTimeout(tvar' + strId + ')');
		}
	}

