	//drawPercentBar()
	//Written by Matthew Harvey
	//(http://www.unlikelywords.com/html-morsels/)
	//Mod by Yvonne
	//Modded by BrophY for varibles while calling function
	//(http://www.cogknition.org/knitblogging/percentagebar/)
	//Distributed under the Creative Commons 
function drawPercentBar(percent, color, background, border) 
{
	var width = 180;
	if (!color) { color = "#B0B0B0"; }
	if (!background) { background = "none"; }
	if (!border) { border = "#000000"; }
	var pixels = width * (percent / 100); 
<!--
	document.write("<div style=\"position: relative; line-height: 1em; background-color: " 
			+ background + "; border: 1px solid " + border + "; width: " 
			+ width + "px\">"); 
	document.write("<div style=\"height: 1.5em; width: " + pixels + "px; background-color: "
			+ color + ";\"><\/div>"); 
	document.write("<div style=\"position: absolute; text-align: center; padding-top: .25em; width: " 
			+ width + "px; top: 0; left: 0\">" + percent + "%<\/div>");
	document.write("<\/div>");
//-->
  } 
  
  window.___gcfg = {lang: 'en-GB'};

  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
