<!-- 
function clear_box()
{
if (document.FORM1.HBUSERNAME.value == "USER NAME")
document.FORM1.HBUSERNAME.value = "";
}


function fill_box()
{
if (document.FORM1.HBUSERNAME.value == "")
document.FORM1.HBUSERNAME.value = "USER NAME";
}

function clear_box1()
{
if (document.FORM1.PASSWORD.value == "PASSWORD")
document.FORM1.PASSWORD.value = "";
}


function fill_box1()
{
if (document.FORM1.PASSWORD.value == "")
document.FORM1.PASSWORD.value = "PASSWORD";
}

function signup(){
   document.hbform2.HBUSERNAME.value='autosignup';
   document.hbform2.PASSWORD.value='MCW1234';
   document.hbform2.submit();
}


function clear_box2()
{
	//alert ("hello");
	//document.ccoptin.ea.value = 'hello';
	document.ccoptin.ea_f.style.backgroundImage = 'url("https://www.foothillcu.org/templates/foothill_new/images/email_bg.gif")';
	//alert ("bye");
}
function fill_box2()
{
	if (document.ccoptin.ea_f.value == '')
	document.ccoptin.ea_f.style.backgroundImage = 'url("https://www.foothillcu.org/templates/foothill_new/images/email_bg_filled.gif")';
}

function clearform()
{
	document.ccoptin.ea.value = document.ccoptin.ea_f.value;
	document.ccoptin.ea_f.value = '';
}

-->
