////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/// This javascript file is created to provide a file for sites needing
/// and external script file. You may or may not need it. Remove as necessary.
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////


function setFocus()
  {
  document.getElementById('human').focus()
  }


function boxOn(daBox,id)
	{
	if(daBox.checked==true){
		document.getElementById(id).style.visibility='visible';
		document.getElementById(id).style.position='relative';
		}
	else{
		document.getElementById(id).style.visibility='hidden';
		document.getElementById(id).style.position='absolute';
		}
	}
