function confirm_message($string)
{
	var agree = confirm($string);
	if (agree)
		return true;
	else
		return false;
}