function CG_Confirmation(msg)
{
	var agree;
	agree = confirm(msg)
	if (agree)
		return true;
	else
		return false;
}
