<!--
	function stripPercentAndReplaceWithWhiteSpace(words, character) {
	//documentation for this script at http://www.shawnolson.net/a/499/
	  var spaces = words.length;
	  for(var x = 1; x<spaces; ++x){
	   words = words.replace(character, " ");   
	 }
	 return words;
    }
// -->


