//global variables that can be used by ALL the function son this page.

function tickChecks() 
{
if (document.searchform.show.checked == true)
{
	document.getElementById('result').innerHTML = '<input id="formSearchBox" name="search" onfocus="actb(this,event,showsarray);" autocomplete="off" />';
}
if (document.searchform.concert.checked == true)
{
	document.getElementById('result').innerHTML = '<input id="formSearchBox" name="search" onfocus="actb(this,event,concertarray);" autocomplete="off" />';
}
if ((document.searchform.show.checked == true) && (document.searchform.concert.checked == true))
{
	document.getElementById('result').innerHTML = '<input id="formSearchBox" name="search"  onfocus="actb(this,event,allarray);" autocomplete="off" />';
}
if ((document.searchform.show.checked != true) && (document.searchform.concert.checked != true))
{
	document.getElementById('result').innerHTML = '<input id="formSearchBox" name="search"  onfocus="actb(this,event,allarray);" autocomplete="off" />';
}

}

