<!--
//
function Go()
{	
	if (document.frame.name.value=="")
	{
		alert ("氏名を入力してください");
		return false;
	}
	if (document.frame.adoresu.value=="")
	{
		alert ("メールアドレスを入力してください");
		return false;
	}
	if (document.frame.naiyou.value=="")
	{
		alert ("質問内容を入力してください");
		return false;
	}
	document.frame.data.value = "abcde";
	return true;
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->
