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


///sets the focus to the input box named "human"
function setFocus()
  {
  document.getElementById('human').focus()
  }



//////////////////////////////////////////////////////////////////////////////
///  I M A G E   G A L L A R Y   F U N C T I O N S
//////////////////////////////////////////////////////////////////////////////
function chgPic(iPath,iTitle)
	{
	document.getElementById("mainBox").src=iPath;
	document.getElementById("mainBox").title=iTitle;
	document.getElementById("mainTitle").innerHTML=iTitle;
	}
