function validate(screenId) {
	 return true;
}

function showDiv (divId) {
	var divThing;

	//display the div that corresponds with this button
	divThing = document.getElementById(divId);
	divThing.style.display = 'inline';
	return false;
}

function hideDiv (divId,divType,abuseId) {
	var divThing;
	divThing = document.getElementById(divId);
	divThing.style.display = 'none';

	return false;
}



function checkEnter(e) {
  var charCode;
  charCode = e.keyCode;
  if (charCode == 13) {
	 // Enter pressed but do you really want to submit?  
	 if (Field.present('phoneNumber', 'password')) {
		document.login.submit();
		return false;
	 }
  }
  else {
	 return true;
  }
}

