<!-- 
function clear_box1()
{
	document.login.thePASS.style.backgroundImage = 'none';
	document.login.thePASS.style.backgroundColor = 'white';
}
function fill_box1()
{
	//	alert(document.login.thePASS.value);
	if (document.login.thePASS.value == "")
	{
	if (document.login.thePASS.style.backgroundImage = 'none')
	{
		document.login.thePASS.style.backgroundImage = 'url(http://dlane.cms.cu-village.com/templates/dennis_lane/images/pass.gif)';
	
	}
	}
}

function clear_box()
{
if (document.login.theID.value == "Client ID")
document.login.theID.value = "";
}


function fill_box()
{
if (document.login.theID.value == "")
document.login.theID.value = "Client ID";
}


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 = '';
}

-->

