
         function ShowHelp(key)
         {
            var help = document.all.tags("div")["divHelp"]
            help.innerHTML=""
            
            switch (key)
            {
               case "name":
                  // This might need to be done with layers for older Netscape browsers
                  // That will need to be done server-side.  Since logic is happening
                  // server-side anyway, should pull this text from the database and 
                  // build dynamically.
                  // ie=div, netscape=layers, else=roundtrips to output static text (or pop-up.  probably better)
                  help.style.display="block"
                  help.innerHTML="<b>Insured Name</b><p>The insured name is the name of the business that is requesting the quote.</p>"
                  break;
               case "email":
                  help.style.display="block"
                  help.innerHTML="<b>EMail Address</b><p>A valid email address is required in order to provide you with a competitive business quote.  Upon completion of the on-line business application, a quote will be mailed to this email address.</p>"
                  break;                  
               case "effdate":
                  help.style.display="block"
                  help.innerHTML="<b>Effective Date</b><p>Enter the date you wish coverage to begin for the policy to be quoted.</p>"
                  break;                  
               case "state":
                  help.style.display="block"
                  help.innerHTML="<b>State</b><p>Enter the state in which the business being quoted is located.</p>"
                  break;                  
               case "lob":
                  help.style.display="block"
                  help.innerHTML="<b>Line of Business</b><p>Select each line of business for which you wish to receive a quote.  At least one line of business must be selected.</p><p><ul class=\"HelpLeft\"><li>Property - Covers physical property and structures</li><li>General Liability - Protects your business from general business liabilities</li><li>Automobile - Insures a business' vehicles</li><li>Umbrella - Protects you in the event of a catastrophic loss</li><li>Worker's Compensation - Protects your employees in the event of an accident</li></ul></p>"
                  break;                  
               case "bustype":
                  help.style.display="block"
                  help.innerHTML="<b>Business Type</b><p>The type of business for which you wish to receive a quote.</p><p><ul class=\"HelpLeft\"><li>Property - Covers physical property and structures</li><li>General Liability - Protects your business from general business liabilities</li><li>Automobile - Insures a business' vehicles</li><li>Umbrella - Protects you in the event of a catastrophic loss</li><li>Worker's Compensation - Protects your employees in the event of an accident</li></ul></p>"
                  break;                  
            }
         }
         
         
         function DisplayHelp(key, divid)
          {
			var tag = document.getElementsByTagName('DIV')
			var divdisplay = document.all.tags("div")[divid]
			
			
			for(x=0; x<tag.length; x++)
			{
				if (tag[x].getAttribute("help"))
				{
					tag[x].style.display="none"; 
				}
			}

            var help = document.getElementById(key)
			help.style.display="block"
            help.style.visibility="visible"
            
            divdisplay.style.display="block"
           
          }
