function jsconfirm(msg) 
{
	if (confirm(msg))
	{
		return true;
	}
	else
	{
		return false;
	}
}