function doClear(theText) 
{
  if (theText.value == theText.defaultValue)
 	{
	 	theText.value = ""
 	}
}
		
function checkTerms()
{
  if(document.getElementById('terms_check').checked == false)
	{
	  alert ('Please be sure to read and agree to our Terms and Policies.');
	  return false;
	}
}

function changecolor(theDiv)
{
	theDiv.style.background='#ffc';
}
function changeback(theDiv)
{
	theDiv.style.background='';
}