var intHelp=1;								// if the help button is on/off

// TO DO - change the showTip function to use the following directions: 0=top, left; 1=top, right; 2=btm, right; 3=btm, left

function showTip(e,intDirection,intIndex) {
   // shows the help div at the specified coordinates
   // e			the passed event so the function knows the currectly X and Y coordinates:  onMouseMove="showHelp(event,0,3)"
   // intDirection	this integer indicates which direction to display the help popup in: left=0, right=1, top=2
   // intIndex		the index of the help below
   var X=0,Y=0;

   if (e.pageX) {
	X=e.pageX;
	Y=e.pageY;
   } else {
	X=e.clientX + document.documentElement.scrollLeft;
	Y=e.clientY + document.documentElement.scrollTop;
   }
   document.getElementById('divHelp').innerHTML=Tips[intIndex];
   document.getElementById('divHelp').style.display='block';		// this has to come before the intDirection processing
   if (intDirection == 1 ) { X -= (300+10); }
   else if (intDirection == 2 ) { Y -= (document.getElementById('divHelp').scrollHeight+17); }
   document.getElementById('divHelp').style.left = X+'px';
   document.getElementById('divHelp').style.top = Y+10+'px';
}

var Tips = new Array (
   "<h1>General</h1>This screen asks you for general information that is commonly requested by banks, shops, employers, websites, applications, etc. and there are additional notes at the bottom regarding the last couple of fields.  It is a good idea to fill this page out completely as it will most likely be the most requested.",
   "<h1>Education</h1>Keep track of all your education by entering in the information related to each learning facility in the below form and clicking the 'Add' button. This information can be used by employers, other schools, and to whomever else you grant permission. If you need to update the information at any time, simply click the name of the school and the form will be populated with what you entered previously. Make your changes, then click the 'Update' button.",
   "<h1>Work</h1>At a quick glance all this information may look like a way to input your work history and you would be correct.  This page can be used to allow prespective employers to see your work history without you having to fill out long forms (also known as your resume or CV).  Also note that this page is split into two sections.  You will need to add the organization in the top section first, prior to adding each job/position (in the lower section) you held while working there. If you need to make updates to the organization or any of the jobs/positions you have or had, simply click on the organization name or the name of the job/position and the information will populate the form.  Make your changes, then click the 'Update' button.",
   "<h1>Networking</h1>Social network sites have become one of the most active places on the internet. You can fill in some of that information here to save you time from doing so at each website you visit.",
   "<h1>Details</h1>This screen asks for more personal information and would be used for dating sites or other places that would need to know a little more than just basic information. Fill out only what you feel comfortable with and remember that none of this information is used or given to anyone that you don't approve.",
   "<h1>People</h1>To help protect our users, the people you add here are for internal services to this website only. For example, we are going to be adding a service in the near future that allows you to contact desired people to inform them of phone and address changes as well as other things.<br /><br />If you know the person's OnlyProfile.org ID (OPoID), then enter that and click the 'Request' button.  If you don't know it, you can search by filling out as much information in the next block as possible and clicking the 'Lookup' button.  All matching results will be shown in the 'Search Results' section and by clicking on the individuals listed in there, their information will populate the 'Select Details' area so you can find exactly who you are looking for.  Once you have found that person, click the bottom 'Request' button to have a request sent to them for approval.",
   "",
   "",
   "",
   "",
   "<h1>Requests</h1>",
   "",
   "",
   "",
   "<h1>OpenID</h1>If you are looking for the textbox to specify your OpenID, stop.  Take joy in knowing that the username you entered above is also your OpenID from this website in the format username.onlyprofile.org.  For those that don't know what OpenID's are or might be interested in knowing, please visit their website at http://www.openid.net.",
   ""
);

function showHelp(e,intDirection,intIndex) {
   // shows the help div at the specified coordinates
   // e			the passed event so the function knows the currectly X and Y coordinates:  onMouseMove="showHelp(event,0,3)"
   // intDirection	this integer indicates which direction to display the help popup in: left=0, right=1, top=2
   // intIndex		the index of the help below
   var X=0,Y=0;

   if (e.pageX) {
	X=e.pageX;
	Y=e.pageY;
   } else {
	X=e.clientX + document.documentElement.scrollLeft;
	Y=e.clientY + document.documentElement.scrollTop;
   }
   document.getElementById('divHelp').innerHTML=Help[intIndex];
   document.getElementById('divHelp').style.display='block';		// this has to come before the intDirection processing
   if (intDirection == 1 ) { X -= (300+10); }
   else if (intDirection == 2 ) { Y -= (document.getElementById('divHelp').scrollHeight+17); }
   document.getElementById('divHelp').style.left = X+'px';
   document.getElementById('divHelp').style.top = Y+10+'px';
}

var Help = new Array (
   "<h1>Save changes</h1><h2>Description</h2>When you have made all the changes you need to on the form, click this button to save them to the database.",
   "<h1>Request new category</h1><h2>Description</h2>If you notice that a particular set of information is missing from our site, feel free to submit a request to have a new category added.  In this event, please be sure to let us know the fields that should be present also.  To give you an idea of a category, the existing ones are 'General', 'Education', 'Work', 'Networking', 'Details', and 'Friends'.",
   "<h1>Request new field</h1><h2>Description</h2>If you realize that a particular field under any of the current categories ('General', 'Education', 'Work', etc) is missing, feel free to submit to our staff the field that is missing along with example values. An example of a field would be the 'Full name' field under the 'General' category.</h2>",
   "<h1>Request new value</h1><h2>Description</h2>Although we have tried our best to include all the possible values, we know some may have been left out.  Please let our staff know if a field value is missing somewhere.",
   "",
   "",
   "",
   "",
   "",
   "",
   "<h1>Full name</h1><h2>Description</h2>Separated into four sections, this is where your full name goes. The fields are 'first', 'middle', 'last', and 'suffix' (for 'Jr.', 'Sr.', 'Ph. D.', etc).<h2>Example(s)</h2>John Quincy Doe Jr., Ph. D",
   "<h1>Nickname(s)</h1><h2>Description</h2>Provide any nicknames you currently go by.  If you have multiple, just separate with comma's.<h2>Example(s)</h2>If your legal name is 'Robert', you may go by 'Bob' which is what would be listed here.",
   "<h1>Gender</h1><h2>Description</h2>Your gender.",
   "<h1>Date of birth (DOB)</h1><h2>Description</h2>The date when you were born. Clicking the textbox reveals a calendar to help you with your selection.<h2>Example(s)</h2>02/14/1978",
   "<h1>Race</h1><h2>Description</h2>A person's race typically consists of physical traits such as skin color, hair texture, facial or cranial features, etc. This is not to be confused with ethnicity which is typically a person's national-origin.  For example, the race of a man with white skin would be considered 'Caucasian', but if his national-origin is in Africa, his ethnicity would be 'African'.<h2>Additional informatin</h2>http://en.wikipedia.org/wiki/Race_(classification_of_human_beings)<br />",
   "<h1>Ethnicity</h1><h2>Description</h2>A person's ethnicity typically consists of the national-origin. This is not to be confused with race which typically consists someone's physical traits.<h2>Additional information</h2>http://en.wikipedia.org/wiki/Ethnicity",
   "<h1>Mailing address</h1><h2>Description</h2>The mailing address that you currently receive postal mail through.  This line typically is the road/street name or the post office box number.<h2>Example(s)</h2>1234 street name<br />P.O. Box 1234",
   "<h1>Mailing address</h1><h2>Description</h2>This line of the mailing address is optional and typically would be a suite or apartment number.<h2>Example(s)</h2>Suite 555",
   "<h1>Mailing address city</h1><h2>Description</h2>The city portion of the mailing address that you receive mail.<h2>Example(s)</h2>Orlando",
   "<h1>Mailing address state</h1><h2>Description</h2>This field does not pertain to all international regions (eg South America).  If this is not applicable, simply put in two dashes (--), otherwise put the two letter abbreviation of the State in which you receive mail.<h2>Example(s)</h2>'Fl' for Florida in the United States of America",
   "<h1>Mailing address zip/postal code</h1><h2>Description</h2>Recognized internationally, this field can contain up to 10 characters and is known as Zip or Postal code.<h2>Example(s)</h2>32803-5321<br />BXC 132",
   "<h1>Mailing address country</h1><h2>Description</h2>The Country that your mailing address belongs to.<h2>Example(s)</h2>United States of America",
   "<h1>Billing address</h1><h2>Description</h2>The billing address that you currently receive postal mail through.  This line typically is the road/street name or the post office box number.<h2>Example(s)</h2>1234 street name<br />P.O. Box 1234",
   "<h1>Billing address</h1><h2>Description</h2>This line of the billing address is optional and typically would be a suite or apartment number.<h2>Example(s)</h2>Suite 555",
   "<h1>Billing address city</h1><h2>Description</h2>The city portion of the billing address that you receive mail.<h2>Example(s)</h2>Orlando",
   "<h1>Billing address state</h1><h2>Description</h2>This field does not pertain to all international regions (eg South America).  If this is not applicable, simply put in two dashes (--), otherwise put the two letter abbreviation of the State in which you receive bills.<h2>Example(s)</h2>'Fl' for Florida in the United States of America",
   "<h1>Billing address zip/postal code</h1><h2>Description</h2>Recognized internationally, this field can contain up to 10 characters and is known as Zip or Postal code.<h2>Example(s)</h2>32803-5321<br />BXC 132",
   "<h1>Billing address country</h1><h2>Description</h2>The Country that your billing address belongs to.<h2>Example(s)</h2>United States of America",
   "<h1>Neighborhood</h1><h2>Description</h2>The name of the neighborhood in which you currently live.<h2>Example(s)</h2>Waterford Lakes",
   "<h1>Email address</h1><h2>Description</h2>Your primary <b>personal</b> email address.<h2>Example(s)</h2>johndoe@provider.com",
   "<h1>Home phone number</h1><h2>Description</h2>Your primary (or only) home phone number.<h2>Example(s)</h2>407-555-1234",
   "<h1>Mobile phone number</h1><h2>Description</h2>Your primary (or only) mobile phone number.<h2>Example(s)</h2>407-555-4321",
   "<h1>Mobile phone SMS</h1><h2>Description</h2>Check this box if you are able to receive text messages on your mobile phone.",
   "<h1>Mobile phone email</h1><h2>Description</h2>Check this box if you are able to check your email on your mobile phone.",
   "<h1>Time zone</h1><h2>Description</h2>The timezone you currently live in.<h2>Example(s)</h2>Eastern",
   "<h1>OnlyProfile.org ID</h1><h2>Description</h2>This is the identification that is distributed to the public for them to request access to the information you provide on this site. This is not to be confused with a login username. Also, please see the note at the bottom of this screen for more information.<h2>Example(s)</h2>John Doe<br />John_Doe<br />John.Doe<br />Doe, John",
   "<h1>Username</h1><h2>Description</h2>The largest form of authentication, the username is one of two pieces of information allowing a person to log into a website or application. The username you provide here also becomes your OpenID from this site (username@onlyprofile.org). Please note that it is <b>not recommended</b> to make this the same as your OnlyProfile.org ID (OPoID), that this username is <b>only</b> for this site, and that this will <u><b>NEVER</b></u> be asked by anyone.<h2>Example(s)</h2>johnnyboy1234",
   "<h1>Password</h1><h2>Description</h2>The password associated with your user account at this website.  This will <u><b>NEVER</b></u> be asked by anyone.",
   "<h1>Confirmation password</h1><h2>Description</h2>To make sure you entered what you thought you entered as the password, you must type it in twice (once for each of these boxes).",
   "<h1>Autogrant PIN 1</h1><h2>Description</h2>Autogrant PIN's allow a requesting entity to gain automatically approved access to your information (which can be later denied). Two autogrant PIN's have been established for two separate types of access. This PIN automatically grants access to all your information on this screen, but <u><b>no others</b></u>. This would most likely be used when your information is being requested onsite for any reason (ie doctor's offices, repair shops, etc) and you don't have acces to a computer to get online for approval.  This needs to be used sparingly (if at all) and changed everytime it is used. The best way to perform onsite approval is by having the person or company do an mobile PIN request (which sends you a random pin to your mobile phone via SMS or email).<h2>Example(s)</h2>1v3*s7-0s9",
   "<h1>Autogrant PIN 2</h1><h2>Description</h2>Giving this PIN to a person or organization allows them to have automatically approved access to <u><b>all</b></u> of your information (which can be later denied). There are no situations where this might be used that could be thought of, but was included just in case. This needs to be used sparingly (if at all) and changed everytime it is used. The best way to perform onsite approval is by having the person or company do an mobile PIN request (which sends you a random pin to your mobile phone via SMS or email).<h2>Example(s)</h2>1v3*s7-0s9",
   "",
   "",
   "",
   "",
   "<h1>Country</h1><h2>Description</h2>The country where the school is located at. If you don't see your county listed, please click the 'Request new value' button to the right'.",
   "<h1>State</h1><h2>Description</h2>The state where the school is located at. If you don't see your state listed, please click the 'Request new value' button to the right'.",
   "<h1>City</h1><h2>Description</h2>The city where the school is located at. If you don't see your city listed, please click the 'Request new value' button to the right'.",
   "<h1>School</h1><h2>Description</h2>The name of the school you attended. If you don't see your school listed, please click the 'Request new value' button to the right'.",
   "<h1>Status</h1><h2>Description</h2>Your current status with the school.",
   "<h1>Attended</h1><h2>Description</h2>The starting and ending years you attended the currently selected school.",
   "<h1>Degree</h1><h2>Description</h2>What degree you obtained or currently are obtaining.  If you are unsure, you can select 'none' or 'in progress'.",
   "<h1>Majors</h1><h2>Description</h2>This is reserved for schools of higher learning such as Collages and Trade schools.  If you have obtained more than one, separate each with a comma.<h2>Example(s)</h2>Civil Engineer<br />Management in Information Services",
   "<h1>Minors</h1><h2>Description</h2>Any minors that were obtained while attending the school.  If you have more than one, separate with a comma.<h2>Example(s)</h2>English Language<br />Math",
   "<h1>Greek</h1><h2>Description</h2>For fraternatity and sorority members, select the options that made up your house.",
   "<h1>Clubs & Organizations</h1><h2>Description</h2>List all the clubs and organizations you were a member to while present at the school.<h2>Example(s)</h2>Beta Club<br />Chess Club",
   "<h1>Add</h1><h2>Description</h2>When you get done filling out the information above, click this button to have it added below.",
   "<h1>Del</h1><h2>Description</h2>To remove schools from the list below, check the box infront of all the ones you no longer want listed and click this button.",
   "<h1>Update</h1><h2>Description</h2>In order to update items listed below, click their school name and the information you entered will populate the form objects above.  Edit them with the new information and click this button to have it updated.",
   "",
   "",
   "",
   "",
   "",
   "",
   "<h1>Organization OPoID</h1><h2>Description</h2>This field allows you to provide the OnlyProfile.org ID (OPoID) for the organization so that its associated information is always kept up-to-date and accurate without your involvement.  When making this request, some of the form values will be disabled to identify what will automatically be entered and maintained for you.  If the organization doesn't have an OnlyProfile.org ID (OPoID), then leave this value as it is.<h2>Example(s)</h2>Digital Pipe Inc",
   "<h1>Organization OPoID request</h1><h2>Description</h2>This button sends a request to the OnlyProfile.org ID (OPoID) account holder to see if you can have access to their information.  Click this button <u>only</u> if you have entered in an OnlyProfile.org ID (OPoID) in the textbox to the left.",
   "<h1>Organization OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to the organization.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>Organization name</h1><h2>Description</h2>This field contains the organizations name.  Do not fill this in if you entered an OnlyProfile.org ID (OPoID) for the organization.<h2>Example(s)</h2>Digital Pipe Inc",
   "<h1>Organization phone</h1><h2>Description</h2>The main phone number for the organization (toll free or local number).  If you entered an OnlyProfile.org ID (OPoID) for the organization, don't fill in a value here, otherwise if the organization has a toll free number, it is recommended to enter that instead of the local main contact phone number.<h2>Example(s)</h2>1-407-555-1234",
   "<h1>Organization facsimile</h1><h2>Description</h2>The main (or only) fax line for the organization (toll free or local number).  Do not fill this in if you entered an OnlyProfile.org ID (OPoID) for the organization.<h2>Example(s)</h2>1-407-555-1235",
   "<h1>Website</h1><h2>Description</h2>Nowadays, everything has a website.  This is for the website for this organization.<h2>Example(s)</h2>http://www.company.com",
   "<h1>Address</h1><h2>Description</h2>The mailing address to the headquarters the organization currently receives postal mail to.  This line typically is the road/street name or the post office box number.<h2>Example(s)</h2>1234 street name<br />P.O. Box 1234",
   "<h1>Address</h1><h2>Description</h2>This line of the mailing address is optional and typically would be a suite or apartment number.<h2>Example(s)</h2>Suite 555",
   "<h1>Address city</h1><h2>Description</h2>The City portion of the mailing address that the headquarters receives mail.<h2>Example(s)</h2>Orlando",
   "<h1>Address state</h1><h2>Description</h2>This field does not pertain to all international regions (eg South America).  If this is not applicable, simply put in two dashes (--), otherwise put the two letter abbreviation of the State for your mailing address.<h2>Example(s)</h2>'Fl' for Florida in the United States of America",
   "<h1>Address zip/postal code</h1><h2>Description</h2>Recognized internationally, this field can contain up to 10 characters and is known as Zip or Postal code.<h2>Example(s)</h2>32803-5321<br />BXC 342",
   "<h1>Address country</h1><h2>Description</h2>The Country that your mailing address belongs to.<h2>Example(s)</h2>United States of America",
   "<h1>Organization add</h1><h2>Description</h2>Once the above information has been filled out, click this button to add the orgainzation to the list at the bottom of the screen.",
   "<h1>Organization delete</h1><h2>Description</h2>If for some reason you don't want to have an organization(s) listed below (instead of updating it), you can delete it by checking the box next to the dates worked and click this button.",
   "<h1>Organization update</h1><h2>Description</h2>Not often, but sometimes an organizations information will change.  When it does, click its name in the list at the bottom of the screen to have its information listed above.  Afterwards, make the desired changes and click this button.",
   "<h1>Organization</h1><h2>Description</h2>This box identifies which organization you are entering this job/position for based on how many you added in the above section.  All the information below this point applies to a job/position you have had with the selected organization from this list.  If you have multiple jobs/positions fill this section out multiple times clicking the 'Add' button after each job/position has been entered.",
   "<h1>Department</h1><h2>Description</h2>This is the name of the department that the entered job/position was placed in.<h2>Example(s)</h2>Human resources<br />Sales<br />Accounting<br />Information technology",
   "<h1>Supervisor OPoID</h1><h2>Description</h2>This field allows you to provide the OnlyProfile.org ID (OPoID) for your supervisor so that their associated information is always kept up-to-date and accurate without your involvement.  When making this request, some of the form values will be disabled to identify what will automatically be entered and maintained for you.  If the supervisor doesn't have an OnlyProfile.org ID (OPoID), then leave this value as it is.<h2>Example(s)</h2>John.Doe",
   "<h1>Supervisor OPoID request</h1><h2>Description</h2>This button sends a request to the OnlyProfile.org ID (OPoID) account holder to see if you can have access to their information.  Click this button <u>only</u> if you have entered in an OnlyProfile.org ID (OPoID) in the textbox to the left.",
   "<h1>Supervisor OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to the supervisor.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>Supervisor name</h1><h2>Description</h2>This field contains the supervisors name.  Do not fill this in if you entered an OnlyProfile.org ID (OPoID) for that person.<h2>Example(s)</h2>John Doe",
   "<h1>Supervisor email</h1><h2>Description</h2>If you entered an OnlyProfile.org ID (OPoID) in the textbox above, leave this field blank, otherwise fill this in with the email address of your supervisor.<h2>Example(s)</h2>jamesdoe@company.com",
   "<h1>Job title</h1><h2>Description</h2>The job title you have or had at the time of employment.<h2>Example(s)</h2>DCSA<br />Secretary to VP of marketing<br />CEO",
   "<h1>Supervised</h1><h2>Description</h2>The amount of people you supervised when you held this job/position.<h2>Example(s)</h2>5",
   "<h1>Dates</h1><h2>Description</h2>Clicking these two textboxes will bring up a calendar for you to select the starting and ending dates you worked in this job/position.  They are entered in the format MM/DD/YYYY.<h2>Example(s)</h2>01/15/2008 - 09/03/2009",
   "<h1>Pay</h1><h2>Description</h2>This is the amount of pay you received (excluding overtime and bonuses) while in the job/position.  It can be entered as salary, hourly, commission, by the job, or by the piece in the following formats respectively: $36000 (salary), $12.30/hr (hourly), 25% (commission) or $36000+10% (base+commission), $800/job (by the job), $50/piece (by the piece).",
   "<h1>Awards, honors, metals, etc</h1><h2>Description</h2>List all the awards, honors, metals, trophies, publications, certifications, etc that you earned or recieved while working in the job/position.<h2>Example(s)</h2>A+, RHCE, MCSE<br />Article on POP3 vs IMAP in XYZ magazine",
   "<h1>Duties</h1><h2>Description</h2>The duties that were assigned to the job/position being entered.<h2>Example(s)</h2>Maintain server stability, updates, and backups.  Installation of new hardware and software at all client computers.",
   "<h1>Email address</h1><h2>Description</h2>The email address you currently use at this organization.<h2>Example(s)</h2>johndoe@company.com",
   "<h1>Work phone number</h1><h2>Description</h2>Your direct phone number at this organization.  If you don't have a direct line, leave this field blank.<h2>Example(s)</h2>1-407-555-4321",
   "<h1>Work phone extension</h1><h2>Description</h2>If you have an extension number, enter it here, otherwise, leave this field blank.<h2>Example(s)</h2>1234",
   "<h1>Mobile phone number</h1><h2>Description</h2>This applies only to <u>work provided</u> mobile phones provided by this organization (personal mobile phones are entered in the 'General' section).<h2>Example(s)</h2>1-407-555-2345",
   "<h1>Mobile phone SMS</h1><h2>Description</h2>Check this box if you are able to receive text messages on your work provided mobile phone.",
   "<h1>Mobile phone email</h1><h2>Description</h2>Check this box if you are able to check your email on your work provided mobile phone.",
   "<h1>Last/Current address</h1><h2>Description</h2>Smaller, single office organization employee's can simply click the 'same as above' link to duplicate the address of the organization here.  However, people that work from home as well as non-single office organization employee's will enter in the address of the facility they currently work at.  This line typically is the road/street name or the post office box number.<h2>Example(s)</h2>1234 street name<br />P.O. Box 1234",
   "<h1>Last/Current address</h1><h2>Description</h2>This line of your work address is optional and typically would be a suite or apartment number.<h2>Example(s)</h2>Suite 555",
   "<h1>Last/Current address city</h1><h2>Description</h2>The city portion of your work address.<h2>Example(s)</h2>Orlando",
   "<h1>Last/Current address state</h1><h2>Description</h2>This field does not pertain to all international regions (eg South America).  If this is not applicable, simply put in two dashes (--), otherwise put the two letter abbreviation of the State that your work address is in.<h2>Example(s)</h2>'Fl' for Florida in the United States of America",
   "<h1>Last/Current address zip/postal code</h1><h2>Description</h2>Recognized internationally, this field can contain up to 10 characters and is known as zip code or postal code.<h2>Example(s)</h2>32803-5321",
   "<h1>Last/Current address country</h1><h2>Description</h2>The country that your work address belongs to.<h2>Example(s)</h2>United States of America",
   "<h1>Job/Position add</h1><h2>Description</h2>These three buttons add/delete/update the different jobs/promotions you might have with the listed organization at the top of this section.  To add a new job/position, fill out the above information in this section and click this button.",
   "<h1>Job/Position delete</h1><h2>Description</h2>If for some reason you don't want the job/position listing at the bottom of the screen, check the box next to all that you want to delete and click this button.",
   "<h1>Job/Position update</h1><h2>Description</h2>Inevitably, something about your job/position will change.  Whether its your pay, your duties, etc, you can modify it by clicking the job/position in the list at the bottom of the screen (to populate the section above), make your changes, and clicking this button.",
   "",
   "<h1>Allow profile access</h1><h2>Description</h2>This allows you to determine who can view your profile on the social networking websites (or other websites and applications that ask for this information) you are a member of.",
   "<h1>My homepage</h1><h2>Description</h2>While the majority of the internet is made up of websites or businesses or for information, people are starting to purchase them for theirselves.  If you are one of these people, enter your URL in this box in the form of 'http://www.name.com'. NOTE: you need to include the 'http://' prefix.<h2>Example(s)</h2>http://www.johndoe.com",
   "<h1>Screen name services</h1><h2>Description</h2>This list contains the most common instant message services.  Select which is applicable to the screen name you will enter in the textbox to the right.",
   "<h1>Screen name</h1><h2>Description</h2>Once you have selected the instant message service to the left, enter your screen name here.<h2>Example(s)</h2>johndoe",
   "<h1>Screen name add</h1><h2>Description</h2>Once you have selected the instant message service and entered your screen name, click this button to add them to the list.",
   "<h1>Screen name delete</h1><h2>Description</h2>You can remove any screen names you no longer use or don't want listed by selecting them in the list and clicking this button.",
   "<h1>Screen name update</h1><h2>Description</h2>If you change your screen name, you can update it here as well by first clicking on the entry in the list to the right (which populates the two form objects above it), make your changes, and click this button.",
   "<h1>Screen name list</h1><h2>Description</h2>This list contains all the screen names you currently use.",
   "<h1>Here for</h1><h2>Description</h2>These choices help specify what brings you to the social networking websites.",
   "<h1>About me</h1><h2>Description</h2>Here you can list a general overview of yourself and can contain things you like to do, places you want to visit, etc.<h2>Example(s)</h2>My name is John Doe and it seems as though everyone knows me in the town I grew up in.  I would like to...",
   "<h1>Music</h1><h2>Description</h2>List your favorite songs and bands here.<h2>Example(s)</h2>Michael Jackson (RIP), Rod Stewart, Jay Z, Garth Brooks",
   "<h1>Movies</h1><h2>Description</h2>List your favorite movies here.<h2>Example(s)</h2>James Bond, Jurassic Park, Count of Monte Cristo",
   "<h1>Television</h1><h2>Description</h2>List your favorite television shows here.<h2>Example(s)</h2>Heroes, Smallville, Star Trek Enterprise &amp; TNG",
   "<h1>Books</h1><h2>Description</h2>List your favorite books here.<h2>Example(s)</h2>Teach yourself Perl in 24 hours, Jurassic Park, VCR manual (to stop the blinking 12:00)",
   "<h1>Quotes</h1><h2>Description</h2>List your favorite quotes here (as well as the author if known).<h2>Example(s)</h2>Do not follow where the path may lead, but instead go where there is no path and leave a trail (author unknown)",
   "<h1>Sports</h1><h2>Description</h2>List your favorite sports here.<h2>Example(s)</h2>Basketball, Baseball, Soccer",
   "<h1>Hobbies</h1><h2>Description</h2>List your favorite hobbies here.<h2>Example(s)</h2>Long walks on the beach, working on cars, walking in the rain",
   "",
   "",
   "",
   "<h1>Relationship status</h1><h2>Description</h2>Self explanatory",
   "<h1>Spouse/Partner OPoID</h1><h2>Description</h2>This field allows you to provide the OnlyProfile.org ID (OPoID) for your spouse/partner so that their associated information is always kept up-to-date and accurate without your involvement.  When making this request, some of the form values will be disabled to identify what will automatically be entered and maintained for you.  If the spouse/partner doesn't have an OnlyProfile.org ID (OPoID), then leave this value as it is.<h2>Example(s)</h2>Jane.Doe",
   "<h1>Spouse/Partner OPoID request</h1><h2>Description</h2>This button sends a request to the OnlyProfile.org ID (OPoID) account holder to see if you can have access to their information.  Click this button <u>only</u> if you have entered in an OnlyProfile.org ID (OPoID) in the textbox to the left.",
   "<h1>Spouse/Partner OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to your spouse/partner.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>Spouse/Partner name</h1><h2>Description</h2>This field contains your spouses/partners name.  Do not fill this in if you entered an OnlyProfile.org ID (OPoID) for that person.<h2>Example(s)</h2>John Doe",
   "<h1>Child OPoID</h1><h2>Description</h2>This field can contain one of two values.  If your child doesn't have an OnlyProfile.org ID (OPoID), then simply enter his/her name here.  However, if the that person does have an OnlyProfile.org ID (OPoID), enter it here and click the 'Request' button.",
   "<h1>Child OPoID request</h1><h2>Description</h2>This button sends a request to the OnlyProfile.org ID (OPoID) account holder to see if you can have access to their information.  Click this button <u>only</u> if you have entered in an OnlyProfile.org ID (OPoID) in the textbox to the left.",
   "<h1>Child OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to your children.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>Child name</h1><h2>Description</h2>Use this field to add each of your children to to listbox below.  Do not fill this in if you entered an OnlyProfile.org ID (OPoID) for that child.<h2>Example(s)</h2>James Doe",
   "<h1>Child add</h1><h2>Description</h2>If your not adding your children to the list below using their OPoID's, then fill in their names (one at a time) and click this button to add them.",
   "<h1>Child delete</h1><h2>Description</h2>As families expand or adults remarry, children get added to the new/combined families.  Sometimes the marriage doesn't work and the couple split up.  This button allows you to remove the selected children in the listbox to the right.",
   "<h1>Children</h1><h2>Description</h2>This box will be populated with all the children you have entered in via the textbox above.  To select multiple, hold your 'Ctrl' key while clicking the mouse.",
   "<h1>Height</h1><h2>Description</h2>Self explanatory",
   "<h1>Weight</h1><h2>Description</h2>Self explanatory",
   "<h1>Eyes color</h1><h2>Description</h2>Self explanatory",
   "<h1>Hair color</h1><h2>Description</h2>Self explanatory",
   "<h1>Tatoo's</h1><h2>Description</h2>Self explanatory",
   "<h1>Piercings</h1><h2>Description</h2>Self explanatory",
   "<h1>Frequent travler</h1><h2>Description</h2>If you are a frequent traveler due to your job or you vacation a lot or for whatever reason, you will want to select 'Yes'.",
   "<h1>Smokes</h1><h2>Description</h2>Self explanatory",
   "<h1>Drinks</h1><h2>Description</h2>Self explanatory",
   "<h1>Does drugs</h1><h2>Description</h2>Self explanatory",
   "<h1>Religion</h1><h2>Description</h2>You can be as vague or specific as you like here regarding your religion.<h2>Examples(s)</h2>Christian<br />Episcopalian<br />Buddhist<br />Hindu",
   "<h1>Political affiliation</h1><h2>Description</h2>This field can be as vague or specific as you like regarding your political affiliation.<h2>Example(s)</h2>Liberal<br />Conservative<br />Independent",
   "<h1>Want children</h1><h2>Description</h2>Self explanatory",
   "<h1>Sexuality</h1><h2>Description</h2>Self explanatory",
   "<h1>Activities</h1><h2>Description</h2>Specify which activities you enjoy doing in your spare time, on vacation, etc.<h2>Example(s)</h2>Long walks on the beach<br />Surfing<br />Baseball",
   "<h1>Interests</h1><h2>Description</h2>This area defines what your interestes are.</h2><h2>Example(s)</h2>Photography<br />Programming<br />Cooking",
   "<h1>About me</h1><h2>Description</h2>There are two sections regarding this due to the fact that the one for social networking will most likely (but doesn't have to be) different from the one for dating.</h2><h2>Example(s)</h2>I am a very intelligent, affectionate person looking for the same...",
   "",
   "<h1>Person OPoID</h1><h2>Description</h2>If you know your family or friends OnlyProfile.org ID (OPoID), then type it in here and click the 'Request' button to indicate you want to add them to your list.  Upon approval, they will be added.<h2>Example(s)</h2>john.doe",
   "<h1>Person OPoID request</h1><h2>Description</h2>This button sends a request to the OnlyProfile.org ID (OPoID) account holder to see if you can have access to their information.  Click this button <u>only</u> if you have entered in an OnlyProfile.org ID (OPoID) in the textbox to the left.",
   "<h1>Person OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to the person.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>Name</h1><h2>Description</h2>If you don't know the person's OnlyProfile.org ID (OPoID), enter in as much information here as possible and click the 'Lookup' button to have all matching people show up in the list below.<h2>Example(s)</h2>",
   "<h1>Email address</h1><h2>Description</h2>If you don't know the person's OnlyProfile.org ID (OPoID), enter in as much information here as possible and click the 'Lookup' button to have all matching people show up in the list below.<h2>Example(s)</h2>john.doe@company.com",
   "<h1>City</h1><h2>Description</h2>If you don't know the person's OnlyProfile.org ID (OPoID), enter in as much information here as possible and click the 'Lookup' button to have all matching people show up in the list below.<h2>Example(s)</h2>Orlando",
   "<h1>State</h1><h2>Description</h2>This field does not pertain to all international regions (eg South America).  If this is not applicable, simply put in two dashes (--), otherwise put the two letter abbreviation of the State the person you are searching for lives in.<h2>Example(s)</h2>'Fl' for Florida in the United States of America",
   "<h1>Zip/Postal code</h1><h2>Description</h2>If you don't know the person's OnlyProfile.org ID (OPoID), enter in as much information here as possible and click the 'Lookup' button to have all matching people show up in the list below.<h2>Example(s)</h2>32803-5321",
   "<h1>Country</h1><h2>Description</h2>If you don't know the person's OnlyProfile.org ID (OPoID), enter in as much information here as possible and click the 'Lookup' button to have all matching people show up in the list below.<h2>Example(s)</h2>United States of America",
   "<h1>Lookup</h1><h2>Description</h2>After filling out as much information above as you can, click this button to search our database so all matches can be listed below.",
   "<h1>Results</h1><h2>Description</h2>This will list all the matches that apply using all the information you entered above.  Selecting an item in this list will populate the boxes below with that person's information to help you pin point the exact person you are looking for.",
   "<h1>Selected full name</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>John Q. Doe",
   "<h1>Selected age</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>23",
   "<h1>Selected sex</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>Male",
   "<h1>Selected race</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>Caucasian",
   "<h1>Selected city</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>Orlando",
   "<h1>Selected state</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>Fl",
   "<h1>Selected zip/postal code</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>32803-5321",
   "<h1>Selected country</h1><h2>Description</h2>Self explanatory<h2>Example(s)</h2>United States of America",
   "<h1>Selected request</h1><h2>Description</h2>Once you have found the person you are looking for, click this button to request them to be added to your friends and family list.",
   "<h1>Person OPoID status</h1><h2>Description</h2>This box will display the status (in real time) of the request you are making to the person.  To make a successful request, this box should ultimately read 'Request made successfully'.",
   "<h1>People delete</h1><h2>Description</h2>Over time some of you will acquire and loose friends and family members.  To remove any, select each one for removal by checking the box next to the date the person was added and click this button.",
   "",
   "<h1></h1><h2>Description</h2><h2>Example(s)</h2>"
);
