
		wolf.formInit = function()
		{
    

			wolf.drawForm(wolf.appId, wolf.publicKey, wolf.formRuleName, wolf.formRedirectURL, "CustomerComments");

			
    wolf.drawGroup("About You");
    
				wolf.drawInput("Your Name", "te_CustomerComments.WFyourname", "text", "", "true", "false");
      
				wolf.drawInput("Your Email ID", "te_CustomerComments.WFyouremailid", "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("Company Name", "te_CustomerComments.WFcompanyname", "text", "", "false", "false");
      
				wolf.drawInput("Your Website Address", "te_CustomerComments.WFyourwebsiteaddress", "text", "", "false", "false");
      
    wolf.drawGroup("Your testimony");
    
				wolf.drawInput("Your Comments", "te_CustomerComments.WFyourcomments", "longtext", "", "true", "false");
      
        wolf.drawTask("Submit", "submit");
      

        wolf.drawTask("Reset", "reset");
        wolf.drawTask("Cancel", "cancel");
        
        
      }
      wolf.attachEvent(window, "onload", wolf.formInit);
    
