
		wolf.formInit = function()
		{
    

			wolf.drawForm(wolf.appId, wolf.publicKey, wolf.formRuleName, wolf.formRedirectURL, "Profile");


			wolf.drawGroup("All fields marked with an asterisk (*) are required.");
    
				wolf.drawInput("Name*", "te_Profile.WFname", "text", "", "true", "false");
				
				wolf.drawInput("Email ID*", "te_Profile.WFemailid", "text", "^[a-zA-Z]*[\\w\\.-]*[a-zA-Z0-9]*@[a-zA-Z0-9][\\w\\.-]*[a-zA-Z0-9]\\.[a-zA-Z][a-zA-Z\\.]*[a-zA-Z]$", "true", "false");
				wolf.drawInput("VerifyEmail", "WFverifyemail", "label", "A verification email will be sent to this address");
      
        wolf.drawInput("Country*", "te_Profile.WFcountry", "select", "/wsfdesigner/solutionexplorer/combos/country", "true", "", "false");
      
				wolf.drawInput("Phone Number*", "te_Profile.WFphonenumber", "text", "", "true", "false");
      
				wolf.drawInput("Promotional Key", "te_Profile.WFpromotionalkey", "text", "", "false", "false");
      
    wolf.drawGroup("Billing Address");
    
				wolf.drawInput("Company", "te_Profile.WFcompany", "text", "", "false", "false");
      
				wolf.drawInput("Address Line 1", "te_Profile.WFaddressline1", "text", "", "false", "false");
      
				wolf.drawInput("Address Line 2", "te_Profile.WFaddressline2", "text", "", "false", "false");
      
				wolf.drawInput("City", "te_Profile.WFcity", "text", "", "false", "false");
      
				wolf.drawInput("State / Region", "te_Profile.WFstateregion", "text", "", "false", "false");

				wolf.drawInput("Postal Code", "te_Profile.WFpostalcode", "text", "", "false", "false");
				//wolf.drawGroup(" ");
				//wolf.drawInput("How did you hear about WOLF?", "te_Profile.WFhearaboutwolf", "select", "ReferenceSource_default", "false", "", "false");

				//wolf.drawInput("Please describe how you plan to use WOLF:", "WFwolfuse1", "longtext", "", "false", "false");


				//wolf.drawInput("What are you using today for this process?", "te_Profile.WFcurrentprocess", "select", "CurrentProcess_default", "false", "", "false");

      
    wolf.drawGroup("Business Plan");
    
        wolf.drawInput("PricingPlaninfo", "WFpricingplaninfo", "label", "&lt;a target='_blank' href='http://www.wolfframeworks.com/pricing.asp'&gt;Pricing Plan Details&lt;/a&gt;");
      
        wolf.drawInput("Plan*", "te_Profile.WFplan", "select", "PricingPlansMaster_default", "true", "", "false");
      
        wolf.drawInput("infoLicense", "WFinfolicense", "label", "By clicking on 'I ACCEPT' you agree to the &lt;a target='_blank' href='http://www.wolfframeworks.com/licenseagreement.asp'&gt; Wolf Frameworks License Agreement &lt;/a&gt;");
      
        wolf.drawInput("I ACCEPT", "te_Profile.WFiaccept", "boolean", "");
      
        wolf.drawTask("Submit", "submit");
      

        wolf.drawTask("Reset", "reset");
        wolf.drawTask("Cancel", "cancel");
        
        
      }
      wolf.attachEvent(window, "onload", wolf.formInit);
    
