function helpinfo(fieldname)
{
	var txtHelp
	
	if (fieldname == "ClaimNum")
	{
		txtHelp = "The claim number will start with a letter that is followed by a hyphen and six numbers.\r For Example:  A-123456. \rThe claim number is usually located in the upper right hand corner of most orders.";
	}
	if (fieldname == "FirmNum")
	{
		txtHelp = "The firm number will start with three digits, followed by a comma, three more digit, \r a hyphen and two more digits.  For Example: 123,456-78";
	}
	if (fieldname == "dtDecision")
	{
		txtHelp = "Please enter the date of the decision in the  mm/dd/yyyy format.\rThe date of the decision can be found on the upper left hand corner of most orders \rand is usually the same date as the 'mailing date.'\rIf you can not find a date of decision you need to refer to the mailing date in this field.";
	}
	if (fieldname == "dtInjury")
	{
		txtHelp = "The Department order you are appealing should indicate the date of your injury.\rIf there is no date include the date that you believe is correct.";
	}
	if (fieldname == "txtLocation")
	{
		txtHelp = "Please enter the city in which you were injured.\rThis information is required to help in determining where proceedings must be held.\rHearings are usually held in the county in which the worker lives or where the injury or exposure occurred.";
	}
	if (fieldname == "txtRelief")
	{
		txtHelp = "Please describe what you are requesting in your appeal.\rFor example, a worker might request that L&I be required \rto accept the claim or pay time loss compensation benefits.\rAn employer may request that the claim be rejected or that the claim be closed \rwithout an award for permanent partial disability.";
	}
	if (fieldname == "FiledBy")
	{
		txtHelp = "We need to know if you are preparing this notice of appeal on your own behalf \ror if you are preparing it for someone who you can legally represent before the Board.  \rPlease select 'self/ pro se' if you are submitting this notice of appeal on your own behalf\r if you are a worker or employer.";
	}
	if (fieldname == "BehalfOf")
	{
		txtHelp = "We need to know on who's behalf the notice of appeal is being filed.  \rThe choices in the drop down list are those that we recognize.  \rFor example if you are a worker and have filed the appeal in your own claim, \ryou would select 'claimant'.  If you are an employer you would select 'employer.'";
	}
	if (fieldname == "rCity")
	{
		txtHelp = "List the city in which you would like proceedings to be held.  \rIt must be a city located in Washington or a city in Oregon or Idaho \rthat borders on Washington.";
	}
	if (fieldname == "Email")
	{
		txtHelp = "To receive an e-mail confirmation that your online appeal has been received,\ryou need to enter a valid e-mail address.";
	}
	if (fieldname == "")
	{
		txtHelp = "";
	}
	
	if (txtHelp.length > 0)
	{
		alert(txtHelp);
	}	
	
}

