<!-- 
function clear_box1()
{
	document.login.PASSWORD.style.backgroundImage = 'none';
}
function fill_box1()
{
	if (document.login.PASSWORD.style.backgroundImage = 'none' && document.login.PASSWORD.value == '')
	document.login.PASSWORD.style.backgroundImage = 'url(https://www.allsouth.org/templates/allsouth/images/pass.gif)';
}

function clear_box()
{
if (document.login.ACCOUNTNUMBER.value == "Account Number")
document.login.ACCOUNTNUMBER.value = "";
}


function fill_box()
{
if (document.login.ACCOUNTNUMBER.value == "")
document.login.ACCOUNTNUMBER.value = "Account Number";
}


function clear_box2()
{
if (document.search.q.value == "SEARCH")
document.search.q.value = "";
}


function fill_box2()
{
if (document.search.q.value == "")
document.search.q.value = "SEARCH";
}

// add hidden fields to the form for the real acct num/pass fields
function clearform()
{
	document.login.ACCOUNTNUMBER.value = document.login.ACCOUNTNUMBER_f.value;
	document.login.PASSWORD.value = document.login.PASSWORD_f.value;
	document.login.ACCOUNTNUMBER_f.value = '';
	document.login.PASSWORD_f.value = '';
}

-->

