/*jslint nomen:false, debug:true, evil:true, vars:false, browser:true, forin:true, undef:false, white:false */
/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, appendTo, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    this.appendTo = appendTo || false;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src=\"\" allowtransparency=\"true\" frameborder=\"0\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></if"+"rame>";
        if(this.appendTo === false){
            document.write(htmlCode);
        }else{
            var tmp = document.createElement('div');
            tmp.innerHTML = htmlCode;
            var a = this.appendTo;
            document.getElementById(a).appendChild(tmp.firstChild);            
        }
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent(this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){
            frameDocument.document.close();
            try{
                if('JotFormFrameLoaded' in window){
                    JotFormFrameLoaded();
                }
            }catch(e){}
        },200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            if(!this.frame.style.minHeight){
                this.frame.style.minHeight = "300px";
            }
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                //Emre: to prevent "iframe height"  problem (61059)
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement) &&
                     (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body) &&
                     (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i1103535530 = new FrameBuilder("1103535530", false, "", "<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Form<\/title>\n<link href=\"http:\/\/max.jotfor.ms\/min\/g=formCss?3.0.2435\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:160px !important;\n    }\n    .form-label-left{\n        width:160px !important;\n    }\n    .form-line{\n        padding:10px;\n    }\n    .form-label-right{\n        width:160px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:false;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:460px;\n        color:Black !important;\n        font-family:Verdana;\n        font-size:12px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2435\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init(function(){\n      $('input_3').hint('ex: myname@example.com');\n   });\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_1103535530\" id=\"1103535530\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"1103535530\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li class=\"form-line\" id=\"id_28\">\n        <div id=\"cid_28\" class=\"form-input-wide\">\n          <div id=\"text_28\" class=\"form-html\">\n            <p>\n              <strong>\n                Basic Information\n              <\/strong>\n              -\n              <em>\n                Tell us a bit about where you're from, your military experience, and some more info about conflicts you served in.\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_5\">\n        <label class=\"form-label-left\" id=\"label_5\" for=\"input_5\">\n          Full Name<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_5\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_5\" name=\"q5_fullName\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_9\">\n        <label class=\"form-label-left\" id=\"label_9\" for=\"input_9\">\n          City<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_9\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_9\" name=\"q9_city\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_29\">\n        <label class=\"form-label-left\" id=\"label_29\" for=\"input_29\">\n          State<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_29\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_29\" name=\"q29_state29\">\n            <option>  <\/option>\n            <option value=\"ALABAMA                         AL\"> ALABAMA AL <\/option>\n            <option value=\"ALASKA                          AK\"> ALASKA AK <\/option>\n            <option value=\"AMERICAN SAMOA                  AS\"> AMERICAN SAMOA AS <\/option>\n            <option value=\"ARIZONA                         AZ\"> ARIZONA AZ <\/option>\n            <option value=\"ARKANSAS                        AR\"> ARKANSAS AR <\/option>\n            <option value=\"CALIFORNIA                      CA\"> CALIFORNIA CA <\/option>\n            <option value=\"COLORADO                        CO\"> COLORADO CO <\/option>\n            <option value=\"CONNECTICUT                     CT\"> CONNECTICUT CT <\/option>\n            <option value=\"DELAWARE                        DE\"> DELAWARE DE <\/option>\n            <option value=\"DISTRICT OF COLUMBIA            DC\"> DISTRICT OF COLUMBIA DC <\/option>\n            <option value=\"FEDERATED STATES OF MICRONESIA  FM\"> FEDERATED STATES OF MICRONESIA FM <\/option>\n            <option value=\"FLORIDA                         FL\"> FLORIDA FL <\/option>\n            <option value=\"GEORGIA                         GA\"> GEORGIA GA <\/option>\n            <option value=\"GUAM                            GU\"> GUAM GU <\/option>\n            <option value=\"HAWAII                          HI\"> HAWAII HI <\/option>\n            <option value=\"IDAHO                           ID\"> IDAHO ID <\/option>\n            <option value=\"ILLINOIS                        IL\"> ILLINOIS IL <\/option>\n            <option value=\"INDIANA                         IN\"> INDIANA IN <\/option>\n            <option value=\"IOWA                            IA\"> IOWA IA <\/option>\n            <option value=\"KANSAS                          KS\"> KANSAS KS <\/option>\n            <option value=\"KENTUCKY                        KY\"> KENTUCKY KY <\/option>\n            <option value=\"LOUISIANA                       LA\"> LOUISIANA LA <\/option>\n            <option value=\"MAINE                           ME\"> MAINE ME <\/option>\n            <option value=\"MARSHALL ISLANDS                MH\"> MARSHALL ISLANDS MH <\/option>\n            <option value=\"MARYLAND                        MD\"> MARYLAND MD <\/option>\n            <option value=\"MASSACHUSETTS                   MA\"> MASSACHUSETTS MA <\/option>\n            <option value=\"MICHIGAN                        MI\"> MICHIGAN MI <\/option>\n            <option value=\"MINNESOTA                       MN\"> MINNESOTA MN <\/option>\n            <option value=\"MISSISSIPPI                     MS\"> MISSISSIPPI MS <\/option>\n            <option value=\"MISSOURI                        MO\"> MISSOURI MO <\/option>\n            <option value=\"MONTANA                         MT\"> MONTANA MT <\/option>\n            <option value=\"NEBRASKA                        NE\"> NEBRASKA NE <\/option>\n            <option value=\"NEVADA                          NV\"> NEVADA NV <\/option>\n            <option value=\"NEW HAMPSHIRE                   NH\"> NEW HAMPSHIRE NH <\/option>\n            <option value=\"NEW JERSEY                      NJ\"> NEW JERSEY NJ <\/option>\n            <option value=\"NEW MEXICO                      NM\"> NEW MEXICO NM <\/option>\n            <option value=\"NEW YORK                        NY\"> NEW YORK NY <\/option>\n            <option value=\"NORTH CAROLINA                  NC\"> NORTH CAROLINA NC <\/option>\n            <option value=\"NORTH DAKOTA                    ND\"> NORTH DAKOTA ND <\/option>\n            <option value=\"NORTHERN MARIANA ISLANDS        MP\"> NORTHERN MARIANA ISLANDS MP <\/option>\n            <option value=\"OHIO                            OH\"> OHIO OH <\/option>\n            <option value=\"OKLAHOMA                        OK\"> OKLAHOMA OK <\/option>\n            <option value=\"OREGON                          OR\"> OREGON OR <\/option>\n            <option value=\"PALAU                           PW\"> PALAU PW <\/option>\n            <option value=\"PENNSYLVANIA                    PA\"> PENNSYLVANIA PA <\/option>\n            <option value=\"PUERTO RICO                     PR\"> PUERTO RICO PR <\/option>\n            <option value=\"RHODE ISLAND                    RI\"> RHODE ISLAND RI <\/option>\n            <option value=\"SOUTH CAROLINA                  SC\"> SOUTH CAROLINA SC <\/option>\n            <option value=\"SOUTH DAKOTA                    SD\"> SOUTH DAKOTA SD <\/option>\n            <option value=\"TENNESSEE                       TN\"> TENNESSEE TN <\/option>\n            <option value=\"TEXAS                           TX\"> TEXAS TX <\/option>\n            <option value=\"UTAH                            UT\"> UTAH UT <\/option>\n            <option value=\"VERMONT                         VT\"> VERMONT VT <\/option>\n            <option value=\"VIRGIN ISLANDS                  VI\"> VIRGIN ISLANDS VI <\/option>\n            <option value=\"VIRGINIA                        VA\"> VIRGINIA VA <\/option>\n            <option value=\"WASHINGTON                      WA\"> WASHINGTON WA <\/option>\n            <option value=\"WEST VIRGINIA                   WV\"> WEST VIRGINIA WV <\/option>\n            <option value=\"WISCONSIN                       WI\"> WISCONSIN WI <\/option>\n            <option value=\"WYOMING                         WY\"> WYOMING WY <\/option>\n            <option selected=\"selected\" value=\"\">  <\/option>\n            <option selected=\"selected\" value=\"\">  <\/option>\n            <option value=\"Military &quot;State&quot;\t\tAbbreviation\"> Military \"State\" Abbreviation <\/option>\n            <option selected=\"selected\" value=\"\">  <\/option>\n            <option value=\"Armed Forces Africa\t\tAE\"> Armed Forces Africa AE <\/option>\n            <option value=\"Armed Forces Americas\t\tAA\"> Armed Forces Americas AA <\/option>\n            <option value=\"(except Canada)\"> (except Canada) <\/option>\n            <option value=\"Armed Forces Canada\t\tAE\"> Armed Forces Canada AE <\/option>\n            <option value=\"Armed Forces Europe\t\tAE\"> Armed Forces Europe AE <\/option>\n            <option value=\"Armed Forces Middle East\tAE\"> Armed Forces Middle East AE <\/option>\n            <option value=\"Armed Forces Pacific\t\tAP\"> Armed Forces Pacific AP <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_10\">\n        <label class=\"form-label-left\" id=\"label_10\" for=\"input_10\">\n          Branch of Service<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_10\" name=\"q10_branchOf10\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_11\">\n        <label class=\"form-label-left\" id=\"label_11\" for=\"input_11\">\n          Rank:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_11\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_11\" name=\"q11_rank\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_12\">\n        <label class=\"form-label-left\" id=\"label_12\" for=\"input_12\">\n          Conflict:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_12\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_12\" name=\"q12_conflict\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_13\">\n        <label class=\"form-label-left\" id=\"label_13\" for=\"input_13\">\n          Occupation:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_13\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_13\" name=\"q13_occupation\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_14\">\n        <label class=\"form-label-left\" id=\"label_14\" for=\"input_14\">\n          Age:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_14\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_14\" name=\"q14_age\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\">\n          Year you joined the VFW:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_15\" name=\"q15_yearYou\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <div id=\"cid_17\" class=\"form-input-wide\">\n          <div id=\"text_17\" class=\"form-html\">\n            <p>\n              <strong>\n                Contact Information\n              <\/strong>\n              -\n              <em>\n                This is for internal use only. We require your telephone number in case a VFW representative needs to contact you regarding your profile.\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_3\">\n        <label class=\"form-label-left\" id=\"label_3\" for=\"input_3\">\n          E-mail:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_3\" class=\"form-input\">\n          <input type=\"email\" class=\"form-textbox validate[required, Email]\" id=\"input_3\" name=\"q3_email\" size=\"23\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_30\">\n        <label class=\"form-label-left\" id=\"label_30\" for=\"input_30\"> Phone Number <\/label>\n        <div id=\"cid_30\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"tel\" name=\"q30_phoneNumber30[area]\" id=\"input_30_area\" size=\"3\">\n            -\n            <label class=\"form-sub-label\" for=\"input_30_area\" id=\"sublabel_area\"> Area Code <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"tel\" name=\"q30_phoneNumber30[phone]\" id=\"input_30_phone\" size=\"8\">\n            <label class=\"form-sub-label\" for=\"input_30_phone\" id=\"sublabel_phone\"> Phone Number <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_22\">\n        <div id=\"cid_22\" class=\"form-input-wide\">\n          <div id=\"text_22\" class=\"form-html\">\n            <p>\n              <strong>\n                Photos -&nbsp;\n              <\/strong>\n              <em>\n                Please attach some photographs of yourself. &nbsp;Ideally we would like an individual photo of you in uniform or wearing your VFW hat as well as a lifestyle image. Examples: you with your family, your pet, doing a hobby, etc.\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_24\">\n        <label class=\"form-label-left\" id=\"label_24\" for=\"input_24\"> Upload Photo: <\/label>\n        <div id=\"cid_24\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_24\" name=\"q24_uploadPhoto24\" file-accept=\"pdf, doc, docx, xls, csv, txt, rtf, html, zip, mp3, wma, mpg, flv, avi, jpg, jpeg, png, gif\" file-maxsize=\"500\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_18\">\n        <div id=\"cid_18\" class=\"form-input-wide\">\n          <div id=\"text_18\" class=\"form-html\">\n            <p>\n              <strong>\n                Personal Story -&nbsp;\n              <\/strong>\n              <em>\n                We&rsquo;d love for you to share a unique military experience, a defining moment in service, most memorable event when deployed overseas &ndash; good or bad, or something you're struggling with and how you overcame or are overcoming it.\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <label class=\"form-label-left\" id=\"label_27\" for=\"input_27\"> More About You: <\/label>\n        <div id=\"cid_27\" class=\"form-input\">\n          <textarea id=\"input_27\" class=\"form-textarea\" name=\"q27_moreAbout\" cols=\"20\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_21\">\n        <div id=\"cid_21\" class=\"form-input-wide\">\n          <div id=\"text_21\" class=\"form-html\">\n            <p>\n              <strong>\n                VFW Experience -&nbsp;\n              <\/strong>\n              <em>\n                Please explain the type of experience you&rsquo;ve had as a VFW member.&nbsp;\n              <\/em>\n              <em>\n                From a female perspective, what do you consider to be the biggest benefit of joining the VFW?\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_26\">\n        <label class=\"form-label-left\" id=\"label_26\" for=\"input_26\">\n          Your VFW Experience:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_26\" class=\"form-input\">\n          <textarea id=\"input_26\" class=\"form-textarea validate[required]\" name=\"q26_yourVfw\" cols=\"20\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_23\">\n        <div id=\"cid_23\" class=\"form-input-wide\">\n          <div id=\"text_23\" class=\"form-html\">\n            <p>\n              <strong>\n                Accomplishments -&nbsp;\n              <\/strong>\n              <em>\n                Tell us about any of your military or personal accomplishments.\n              <\/em>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_25\">\n        <label class=\"form-label-left\" id=\"label_25\" for=\"input_25\"> Your Accomplishments: <\/label>\n        <div id=\"cid_25\" class=\"form-input\">\n          <textarea id=\"input_25\" class=\"form-textarea\" name=\"q25_yourAccomplishments\" cols=\"20\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_32\">\n        <label class=\"form-label-left\" id=\"label_32\" for=\"input_32\">\n          Photo Release<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_32\" class=\"form-input\">\n          <div class=\"form-multiple-column\"><span class=\"form-checkbox-item\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_32_0\" name=\"q32_photoRelease32[]\" value=\"I Agree to the terms outlined below\" \/>\n              <label for=\"input_32_0\"> I Agree to the terms outlined below <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_33\">\n        <div id=\"cid_33\" class=\"form-input-wide\">\n          <div id=\"text_33\" class=\"form-html\">\n            <p>\n              I (releaser) do consent to be the subject of photographs and\/or video to be used by the Veterans of Foreign Wars (VFW). These photographs may appear in a variety of publications and marketing materials, including VFW Membership brochures, VFW web pages, VFW Magazine, and others. Releaser also releases VFW from any and all claims for damages based upon use of the photographs or arising out of this agreement.\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_7\">\n        <div id=\"cid_7\" class=\"form-input-wide\">\n          <div style=\"text-align:left\" class=\"form-buttons-wrapper\">\n            <button id=\"input_7\" type=\"submit\" class=\"form-submit-button\">\n              Submit Form\n            <\/button>\n            &nbsp;\n            <button id=\"input_reset_7\" type=\"reset\" class=\"form-submit-reset\">\n              Clear Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"1103535530\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"1103535530-1103535530\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

