﻿// This is the Sharepoint specific file that supports BACK and FORWARD in the navbar of the SharePoint Help files

function myBack()
{
	history.back()
}
	function myForward()
{
	history.forward()
}
	function myGo(url)
{
	navigate(url)
}
