	 //Miscellaneous JavaScript Functions Written by Shawn Olson
	 //Copyright 2005 by Shawn Olson
	 //Permission to use these scripts provided credit is provided to Shawn Olson
	 //Find more JavaScript resources at http://www.shawnolson.net/topics/JavaScript/ 
	 
	 
	  function insideHTML(cell){
	   eval('theCell = document.getElementById("'+cell+'").innerHTML');
	   return theCell;
	  }
	  
	  
	  function checkValueAgainst(objId,val1){
	   if(insideHTML(objId)==val1){verify=true;} else {verify=false;}
	   return verify;
	  }
	  
	  function makeRemark(target,statement){
	    string = 'theTarget = document.getElementById("'+target+'");';
	    eval(string);
		if(theTarget != null){
		 theTarget.innerHTML = statement;
		}
	  
	  }