function ConfirmDel(){
	return confirm('本当に削除しますか？');
}

function GetHeight(Y,NAME)
{
	var app = navigator.appName.charAt(0);
	if(navigator.userAgent.indexOf('Safari') != -1){
		document.getElementById(Y).height = parent.frames[NAME].document.body.scrollHeight + 20;
	}else if (app == "N")
	{
		document.getElementById(Y).height = parent.frames[NAME].document.height +20;
	}
	else
	{
		document.getElementById(Y).height = parent.frames[NAME].document.body.scrollHeight + 20;
	}
}
function InqSend()
{
	alert('送信が完了いたしました。');
}
function GetHeight2(ID,NAME)
{
	if (document.height)
	{
		document.getElementById(ID).style.height = parent.frames[NAME].document.height +20 +"px" ;
	}
	else
	{
		document.getElementById(ID).style.height = parent.frames[NAME].document.body.scrollHeight +20 +"px";
	}
}
