$(document).ready(function() 
{
	validate_form
	(
		new Array(
			"_textfield1",
			"_textfield2",
			"_textfield3",
			"_textfield4",
			"_textfield5",
			"_textarea1",
			"_date"
		),
		"必須項目を入力下さい。",
		"init"
	);	
});

function raid_pickup_service()
{
	if
	(
		validate_form
		(
			new Array(
				"_textfield1",
				"_textfield2",
				"_textfield3",
				"_textfield4",
				"_textfield5",
				"_textarea1",
				"_date"
			),
			"必須項目を入力下さい。",
			"validate"
		)
	)
	{
		document.getElementById("_raid_picupservice").action = "/raid_pickup_service_ok.php";
		document.getElementById("_raid_picupservice").submit();
	}
}
