function doClear() {
	names = document.getElementById('fname');
	home_phones = document.getElementById('phone');
	cell_phones = document.getElementById('cell');
	emails = document.getElementById('email');
	mfcitys = document.getElementById('mfcity');
	mtcitys = document.getElementById('mtcity');
	move_date = document.getElementById('move_date');
		if (names.value == 'Name') {
			names.value = '';
		}
		if (home_phones.value == 'Home Phone') {
			home_phones.value = '';
		}
		if (cell_phones.value == 'Cell Phone') {
			cell_phones.value = '';
		}
		if (emails.value == 'E-mail') {
			emails.value = '';
		}
		if (mfcitys.value == 'City') {
			mfcitys.value = '';
		}
		if (mtcitys.value == 'City') {
			mtcitys.value = '';
		}
		
	}
function doBack() {
	names = document.getElementById('fname');
	home_phones = document.getElementById('phone');
	cell_phones = document.getElementById('cell');
	emails = document.getElementById('email');
	mfcitys = document.getElementById('mfcity');
	mtcitys = document.getElementById('mtcity');
	if (names.value == '') {
		names.value = 'Name';
	}
	if (home_phones.value == '') {
		home_phones.value = 'Home Phone';
	}
	if (cell_phones.value == '') {
		cell_phones.value = 'Cell Phone';
	}
	if (emails.value == '') {
		emails.value = 'E-mail';
	}
	if (mfcitys.value == '') {
		mfcitys.value = 'City';
	}
	if (mtcitys.value == '') {
		mtcitys.value = 'City';
	}
}


function doErase(some,val) {
	whattoreturn = document.getElementById(some);
	if (whattoreturn.value == val) {
		whattoreturn.value = '';
	}
}
function validate_form()
{
	names = document.getElementById('fname');
	home_phones = document.getElementById('phone');
	cell_phones = document.getElementById('cell');
	emails = document.getElementById('email');
	mfcitys = document.getElementById('mfcity');
	mtcitys = document.getElementById('mtcity');
	move_date = document.getElementById('move_date');
   if (names.value == '')
   {
   alert('You did not enter your name')
   return false
   }
   if ((emails.value == '') && (home_phones.value == '') && (cell_phones.value == ''))
   {
   alert('You did not enter any details to contact you.')
   return false
   }
   if (move_date.value == '')
   {
   alert('You did not enter the date of your moving.')
   return false
   }
   if ((mfcitys.value == '') || (mtcitys.value == ''))
   {
   alert('You did not enter the cities of your moving to and from')
   return false
   }
   document.getElementById('send_request').value=1;
}

function loadCSS() {
document.getElementById('break').innerHTML='';
}
//window.onload = loadCSS;