function fnShowPopUpHelp(category,item) 
{	
	var text = "Sorry, no help is currently available for this field.";
	
	switch (category)
	{	
		case "SignIn":
			switch (item)
			{
				case "Login":
					text = "Your login is used to sign-in to the portal. It is always an E-Mail address and was set by you when you registered for a portal account.";
					break;
				case "Password":
					text = "Your password is an alpha-numeric string of characters created by you when you registered for a portal account.<br><p><span style=\"font-weight:bold;\">Note:</span>&nbsp;&nbsp;Passwords are case-sensitive.</p>" ;
					break;
			}
			break;
			
		case "MyProfile":
			switch (item)
			{
				case "Contact ID":
					text = "This read-only number uniquely identifies you within our systems. You can use it when calling Customer Services to identify yourself quickly and easily."
					break ;
				case "Title":
					text = "The title wish you would like us to use when addressing you, e.g. Mr, Miss, Mrs, Dr etc.";
					break;
				case "First Name":
					text = "Your legal name, commonly referred to as 'given name' or 'Christian name'.";
					break;
				case "Last Name":
					text = "Your last, or family name.";
					break;
				case "Home Address":
					text = "Your registered home address, used to contact you directly. Note: If you have a site then this address is not necessarily the address that invoices are sent to.";
					break;
				case "Home Town":
					text = "Your home town.";
					break;
				case "Home County / City":
					text = "Your region, county or city for those resident in metropolitan counties.";
					break;
				case "Home Post Code":
					text = "Your home post or zip code.";
					break;
				case "Country":
					text = "Your country of residence, this list contains the International Standards Institute list of recognised countries.";
					break;
				case "E-Mail Address":
					text = "You contact E-Mail Address, used for correspondence. Note: This address is independent of your Portal Sign-In address although they may optionally be set the same. Changing this address will NOT change your Portal Sign-In address.";
					break;
				case "Home Phone Number":
					text = "You home contact telephone number.";
					break;
				case "Work Phone Number":
					text = "Your work contact telephone number.";
					break;
				case "Mobile Number":
					text = "Your mobile, or cell phone number.";
					break;
				case "Personal Fax Number":
					text = "Your personal Fax number.";
					break;
				case "Site Address":
					text = "The postal address of your site.";
					break;
				case "Site Phone Number":
					text = "The telephone number of your site.";
					break;
				case "Site Fax Number":
					text = "The Fax number of your site.";
					break;
				case "Site E-Mail Address":
					text = "The E-Mail address of your site. This address is used for invoicing.";
					break;
				case "Password":
					text = "Your existing alpha-numeric password you use to Sign-In to the customer portal.<br><p><span style=\"font-weight:bold;\">Note:</span>&nbsp;&nbsp;Passwords are case-sensitive.</p>";
					break ;
				case "Current Sign-In E-Mail Address":
					text = "Your existing Sign-In E-Mail address used to Sign-In to the customer Portal.";
					break;
				case "New Sign-In E-Mail Address":
					text = "A new E-Mail address that you wish to use to Sign-In to the customer portal. This address must belong and be accessible to you as it will be used to send confirmation E-Mails. ";
					break;
				case "Confirm New Sign-In E-Mail Address":
					text = "Please confirm your new Sign-In E-Mail address by entering it again exactly as above.";
					break;
				case "Update E-Mail Address":
					text = "Check this box to set your ensure that the portal changes your contact E-Mail address match your new portal Sign-In address.<br><p><span style=\"font-weight:bold;\">Note:</span>&nbsp;&nbsp;If the box is left unchecked your E-Mail address will not be changed from it\'s current value.</p>";
			}
			break;
		
		case "Feedback":
			switch (item)
			{
				case "Name":
					text = "The name by which you are, or would like to be, referred to as within the portal.";
					break;
				case "Portal Sign-In":
					text = "The name which you use to login to the portal with. This is normally your E-Mail address .";
					break;
				case "Alternative contact E-Mail Address":
					text = "(optional) - An alternative E-Mail address which we can use to contact you regarding your feedback.";
					break;
				case "About":
					text = "The subject that your feedback is about. This could be a page title, a specific piece of functionality or bug title etc. The text defaults to the title of the page you were viewing when you selected the 'Contact Us' link.";
					break ;
			}
			break ;
			
		case "Cancellations":
			switch (item) 
			{
				case "E-Mail Address":			
					text = "Required so that we can update you on the status of your cancellation request.";
					break;
				case "Cancellation Reason":
					text = "Please help us to improve our service by selecting the reason you wish to cancel the selected services.";
					break;
				case "Date Due To Be Cancelled":
					text = "Please allow at least 14 days as detailed in the terms and conditions of service when specifying the date that you wish to cancel this service."; 
					break;
			}
			break ;
		
		case "Registration":
			switch (item)
			{
				case "Post Code":
					text = "Enter your post code or, if representing an organisation, enter the post code of your billing address." ;
					break ;
					
				case "Password":
					text = "Choose an alpha-numeric password string containing at least 8 characters. Once your account is created, your password will be encrypted using 1024 RSA public/private key encryption for security.<br><p><span style=\"font-weight:bold;\">Note:</span>&nbsp;&nbsp;Passwords are case-sensitive.</p>";
					break;
					
				case "Confirm Password":
					text = "Confirm the password you entered above. The password must match the one entered previously.";
					break;
				
				case "E-Mail Address":
					text = "Your portal Sign-In addres must be a valid E-Mail address belonging to you. If we hold an E-Mail address for you in our systems, the Sign-In E-Mail address has been pre-set to that address. If not you must enter a valid E-Mail address to use as your Sign-In address in the box provided. Once your account is setup, it is possible to change your Sign-In to any E-Mail address belonging to you.";
					break;
			}
				
	}

  overlib (text, CAPTION, item, RIGHT, VAUTO, OFFSETY, 10, TEXTCOLOR, '#666666', FGCOLOR, '#F5F5F5', CAPCOLOR, '#666666', BGCOLOR, '#DFDFDF', CAPTIONSIZE, '8pt');
}


