<!-- 
function clear_box1()
{
	document.FORM1.PASSWORD.style.backgroundImage = 'none';
}
function fill_box1()
{
	if (document.FORM1.PASSWORD.style.backgroundImage = 'none' && document.FORM1.PASSWORD.value == '')
//	document.FORM1.PASSWORD.style.backgroundImage = 'url(../images/pass.gif)';
	document.FORM1.PASSWORD.style.backgroundImage = 'url(/templates/american1/images/pass.gif)';
}

function clear_box()
{
if (document.FORM1.HBUSERNAME.value == "Username")
document.FORM1.HBUSERNAME.value = "";
}


function fill_box()
{
if (document.FORM1.HBUSERNAME.value == "")
document.FORM1.HBUSERNAME.value = "Username";
}


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.HBUSERNAME.value = document.login.HBUSERNAME1.value;
	document.login.PASSWORD.value = document.login.PASSWORD1.value;
	document.login.HBUSERNAME1.value = '';
	document.login.PASSWORD1.value = '';
}

-->

