function checkForm (form)
{
	if (form.name.value == "")
	{
		alert ("Please enter the name of the store.");
		form.name.focus();
		return false;
	}
	return true;
}

