function emptyvalidation(entered, alertbox)
{
	with (entered)
	{
		if (value==null || value=="")
		{if (alertbox!="") {alert(alertbox);} return false;}
		else {return true;}
	}
}

function fillForm(thisform, info)
{
	document.first.value = info['first'];
	document.middle.value = info['middle'];
	document.last.value = info['last'];
	document.company.value = info['company'];
	document.address.value = info['address'];
	document.address2.value = info['address2'];
	document.city.value = info['city'];
	document.state.value = info['state'];
	document.zip.value = info['zip'];
	document.phone.value = info['phone'];
	document.po_box.value = info['po_box'];
}