<!--
function prompt(msg)
{
	if (confirm(msg))
	{
		return true;
	}
	else
	{
		return false;
	}
}
//-->