﻿/**
*Used on the 'remember these' page. Returns user to point of screen where images and text are being displayed, after they have clicked
*a link.
*/	

function scrollme() {	
	window.location.hash = "#n_view_location";
}
		
function fn_main() {

	if (!document.getElementById) {	return false; }				//Disable script for older browsers.

	window.location.hash = "#n_view_location";
	if (typeof scroll_other_onload == "function") {
		scroll_other_onload();
	}
}
							
var scroll_other_onload = window.onload;
window.onload = fn_main;