/* ===== 'scripts.js' ===== */

// The document is loaded -->
onload = function()
	{
		BackToPreviousPage();
	}
// -->

// Return to the previous page -->
function BackToPreviousPage()
	{
		var obj = document.getElementById('BackToPage');	// link's id -->
		if (obj)
			{
				obj.onclick = function()
					{
						if (history.length > 1)
							{
								history.back();
								return false;
							}
						else
							{
								return true;
							}
					}
			}
	}
// -->


