function hiLightSelection(selectId)
{
  var hiLightElement = document.getElementById(selectId);
  hiLightElement.className = "hi yellow";
}
function innerH()
{
  count = 0;
	
  var hiLightString="";
  hiLightString=document.getElementById("hiLightText").value;
	var pageHTML=document.getElementById("original").innerHTML;

	myregexp=new RegExp(hiLightString.replace(/_/g," "),"g");
	pageHTML=pageHTML.replace(myregexp,'<span class="hi">'+hiLightString+'</span>');

  document.getElementById("eventDescription").innerHTML=pageHTML;
	var pageHTML=document.getElementById("eventDescription");
  var tagElements=pageHTML.getElementsByTagName('span'); 
  var linkHTML="";
  for (i = 0; i < tagElements.length; i++) 
  { 
    currentElement = tagElements[i]; 
		var newName = "dynLink"+i;
		currentElement.id = newName;
		linkHTML=linkHTML+'<a class="plainLink" href="#'+newName+'" onclick="hiLightSelection(\''+newName+'\');">'+i+" "+currentElement.innerHTML.replace(/_/g," ")+'</a>';
  } 
	document.getElementById("floater").innerHTML='<div class="date" style="text-align:left;">Your Selections ~ (click)</div>'+linkHTML;
}
function addToSelection(newBit)
{
	document.getElementById("hiLightText").value=newBit; 
	innerH();
}


