
/* various help functions */

function verifyDelete(url) {
	if (confirm("削除でよろしいですか"))
		window.location = url;
}

function removeInputText(me, text) {
	if (me.value == text)
		me.value = '';
}

