// JavaScript Document

function CheckFormPhone() 
{
if (document.information.phone.value=="")
		{
		alert('You must write in a phone number.');
		document.information.phone.focus();
		return false;
		}
		
		
}