﻿
function Utils_GoBack(defaultUrl)
{	
	if (window.history.length >= 1)
	{
		window.history.go(-1);
	}
	else
	{
		window.location = defaultUrl;
	}
	return false;
}