function confirmJump(question, okDest, cancelDest)
{
	var where_to= confirm(question);
	if (where_to== true)
	{
		if( okDest )
			window.location=okDest;
	}
	else
	{
		if( cancelDest )
			window.location=cancelDest;
	}
}
function confirmBox(question)
{
	return confirm(question);
}
