function confirmform(text)	{
	var agree = confirm(text);
	if (agree)
		return true;
	else
		return false;
}