//JS Document
function hideChoice(obj) 
{
document.getElementById(obj).style.display="none";
}
function showChoice(obj)
{
document.getElementById(obj).style.display="";
}
function warnMe(thing,warn,vl)
{
var menu=document.getElementById(thing);
var chk=menu.options[menu.selectedIndex].value;
chk=parseInt(chk);
if (chk>=vl)
{showChoice(warn);}
else
{hideChoice(warn);}
}

function on_field(onme)
{
document.getElementById(onme).value='1';
}
function off_field(onme)
{
document.getElementById(onme).value='0';
}

function my_company(company)
{
	document.getElementById('sName').value=company;
	document.getElementById('biz_search_form').submit();
}