//////////////////////////////////////////////////////////////////
// This function will move back 1 item in the history.
//////////////////////////////////////////////////////////////////
function GoBack(defaultTarget)
{ 
	if (window.history.length > 1)
	{
		window.history.back();
	}
	else
	{
		window.location = defaultTarget;
	}
}

