﻿// Functions for password reminder
// June 2007 : Javascript
// Tim Surtell @ Clario

//************************************************************************************************************
function SetupPage()
	{
	// Set focus
	if (document.getElementById("txtEmailAddress"))
		{
		document.getElementById("txtEmailAddress").focus();
		document.getElementById("txtEmailAddress").select();
		}
	}

