function comment_write(f, nf, u)
{
	if(f.w_name.value == "")
	{
		alert("お名前を入力してください");
	}
	else if(f.w_pass.value == "")
	{
		alert("パスワードを入力してください");
		f.w_pass.focus();
	}
	else if(f.w_comment.value == "")
	{
		alert("内容を入力してください");
		f.w_comment.focus();
	}
	else
	{
		f.target = nf;
		f.submit();
	}
}

function comment_ud(u, f)
{
	f.location = u;
}

function DeleteWindow(u)
{
	var w = window.open(u,'del_confirm','resizable=no,width=330,height=150');
	w.focus();
}