// requires popup.js

var helpTitle = new Array(5);
var helpHTML = new Array(5);

helpTitle[0] = "Display Name";
helpHTML[0] = "Your display name is the name that will be displayed to potential matches and is the only part of your registration details that will be visible to other users.<br/><br/>If you do not enter a display name, your first name will be used to identify you to other users.";
helpTitle[1] = "Other Information";
helpHTML[1] = "Please enter any information that potential matches will require to decide whether you are a suitable match.<br/><br/>A common example is a disability that precludes the use of some car types.";
helpTitle[2] = "Password";
helpHTML[2] = "Please select a password that is easily remembered but difficult for others to guess.<br/><br/>Passwords must be at least six characters long.";
helpTitle[3] = "Location Name";
helpHTML[3] = "Please enter a name that will enable you to easily identify this location, for example <b>Home</b> or <b>Work</b>.<br/><br/>The location name will not be displayed to other users.";
helpTitle[4] = "Street Address";
helpHTML[4] = "Please enter a full street address whenever possible to allow us to accurately pin-point the location, for example <b>100 Collins Street</b>.<br/><br/>To find a street intersection, please enter both street names separated by an &amp; symbol, for example <b>Collins St &amp; Russell St</b>.<br/><br/>You can also enter just a street name, for example <b>Collins Street</b>.<br/><br/>The street address will not be displayed to other users.";

function displayHelp(obj, index) {
	displayPopupOverElement(helpTitle[index], helpHTML[index], obj, 300); }

