/*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 i80532814152 = new FrameBuilder("80532814152", 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.2434\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"http:\/\/www.jotform.com\/css\/styles\/industrial_dark.css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:5px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:url(images\/styles\/style4_2_bg.gif) #363535 top repeat-x;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:520px;\n        background:url(images\/styles\/style4_2_bg.gif) #363535 top repeat-x;\n        color:#cccccc !important;\n        font-family:Arial;\n        font-size:14px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2434\" 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      JotForm.setCalendar(\"28\");\n      JotForm.description('input_30', 'This is a required field.');\n      JotForm.initCaptcha('input_15');\n      JotForm.description('input_15', 'Reset the option if you cannot read the word.');\n      JotForm.totalCounter({\"input_32_1001\":{\"price\":\"100\"},\"input_32_1002\":{\"price\":\"35\"}});\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\" name=\"form_80532814152\" id=\"80532814152\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"80532814152\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li class=\"form-line\" id=\"id_19\">\n        <div id=\"cid_19\" class=\"form-input-wide\">\n          <div id=\"text_19\" class=\"form-html\">\n            <p>\n              <strong><span style=\"font-family: arial, helvetica, sans-serif; font-size: small;\">KUUMBA VENDOR REGISTRATION!<\/span>\n              <\/strong>\n            <\/p>\n            <p><span style=\"border-collapse: collapse; font-family: arial, helvetica, sans-serif; font-size: small;\"><strong><span style=\"text-decoration: underline;\">All vendors&nbsp; must have&nbsp; proof of insurance, license and permits, vendors without proper documentations will be turned away.<\/span>\n                <\/strong>\n                &nbsp; This is a requirement&nbsp;of the insurance company and the city of Jacksonville.<\/span>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_28\">\n        <label class=\"form-label-left\" id=\"label_28\" for=\"input_28\"> Please date your registration: <\/label>\n        <div id=\"cid_28\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_28\" name=\"q28_pleaseDate[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_28\" id=\"sublabel_month\"> Month <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_28\" name=\"q28_pleaseDate[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"08\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_28\" id=\"sublabel_day\"> Day <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_28\" name=\"q28_pleaseDate[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_28\" id=\"sublabel_year\"> Year <\/label><\/span><span class=\"form-sub-label-container\"><div id=\"at_28\">\n              at\n            <\/div>\n            <label class=\"form-sub-label\" for=\"at_28\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"hour_28\" name=\"q28_pleaseDate[hour]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"22\" \/><span class=\"date-separate\">&nbsp;\/<\/span>\n            <label class=\"form-sub-label\" for=\"hour_28\" id=\"sublabel_hour\"> Hour <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"min_28\" name=\"q28_pleaseDate[min]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"18\" \/>\n            <label class=\"form-sub-label\" for=\"min_28\" id=\"sublabel_minutes\"> Minutes <\/label><\/span><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" id=\"ampm_28\" name=\"q28_pleaseDate[ampm]\">\n              <option value=\"AM\"> AM <\/option>\n              <option value=\"PM\"> PM <\/option>\n            <\/select>\n            <label class=\"form-sub-label\" for=\"ampm_28\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_28_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_28_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\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          How did you hear about us?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_10\" name=\"q10_howDid\">\n            <option>  <\/option>\n            <option value=\"Internet\"> Internet <\/option>\n            <option value=\"Special Event\"> Special Event <\/option>\n            <option value=\"CityBlack\"> CityBlack <\/option>\n            <option value=\"MySpace\"> MySpace <\/option>\n            <option value=\"Blacksonville\"> Blacksonville <\/option>\n            <option value=\"Radio\"> Radio <\/option>\n            <option value=\"Word of Mouth\"> Word of Mouth <\/option>\n            <option value=\"Television\"> Television <\/option>\n            <option value=\"Newspaper\"> Newspaper <\/option>\n            <option value=\"Promo Material\"> Promo Material <\/option>\n            <option value=\"Other\"> Other <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <label class=\"form-label-left\" id=\"label_17\" for=\"input_17\"> Company Name: <\/label>\n        <div id=\"cid_17\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_17\" name=\"q17_companyName\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_0\">\n        <label class=\"form-label-left\" id=\"label_0\" for=\"input_0\">\n          First Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_0\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_0\" name=\"q0_firstName\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_8\">\n        <label class=\"form-label-left\" id=\"label_8\" for=\"input_8\">\n          Last Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_8\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_8\" name=\"q8_lastName\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_22\">\n        <label class=\"form-label-left\" id=\"label_22\" for=\"input_22\">\n          Phone #<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_22\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_22\" name=\"q22_phone\" size=\"20\" maxlength=\"100\" \/>\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          Address:<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_address\" size=\"20\" maxlength=\"100\" \/>\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          City:<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_city\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_18\">\n        <label class=\"form-label-left\" id=\"label_18\" for=\"input_18\">\n          State:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_18\" name=\"q18_state\">\n            <option>  <\/option>\n            <option value=\"Alabama\"> Alabama <\/option>\n            <option value=\"Alaska\"> Alaska <\/option>\n            <option value=\"Arizona\"> Arizona <\/option>\n            <option value=\"Arkansas\"> Arkansas <\/option>\n            <option value=\"California\"> California <\/option>\n            <option value=\"Colorado\"> Colorado <\/option>\n            <option value=\"Connecticut\"> Connecticut <\/option>\n            <option value=\"District of Columbia\"> District of Columbia <\/option>\n            <option value=\"Delaware\"> Delaware <\/option>\n            <option value=\"Florida\"> Florida <\/option>\n            <option value=\"Georgia\"> Georgia <\/option>\n            <option value=\"Hawaii\"> Hawaii <\/option>\n            <option value=\"Idaho\"> Idaho <\/option>\n            <option value=\"Illinois\"> Illinois <\/option>\n            <option value=\"Indiana\"> Indiana <\/option>\n            <option value=\"Iowa\"> Iowa <\/option>\n            <option value=\"Kansas\"> Kansas <\/option>\n            <option value=\"Kentucky\"> Kentucky <\/option>\n            <option value=\"Louisiana\"> Louisiana <\/option>\n            <option value=\"Maine\"> Maine <\/option>\n            <option value=\"Maryland\"> Maryland <\/option>\n            <option value=\"Massachusetts\"> Massachusetts <\/option>\n            <option value=\"Michigan\"> Michigan <\/option>\n            <option value=\"Minnesota\"> Minnesota <\/option>\n            <option value=\"Mississippi\"> Mississippi <\/option>\n            <option value=\"Missouri\"> Missouri <\/option>\n            <option value=\"Montana\"> Montana <\/option>\n            <option value=\"Nebraska\"> Nebraska <\/option>\n            <option value=\"Nevada\"> Nevada <\/option>\n            <option value=\"New Hampshire\"> New Hampshire <\/option>\n            <option value=\"New Jersey\"> New Jersey <\/option>\n            <option value=\"New Mexico\"> New Mexico <\/option>\n            <option value=\"New York\"> New York <\/option>\n            <option value=\"North Carolina\"> North Carolina <\/option>\n            <option value=\"North Dakota\"> North Dakota <\/option>\n            <option value=\"Ohio\"> Ohio <\/option>\n            <option value=\"Oklahoma\"> Oklahoma <\/option>\n            <option value=\"Oregon\"> Oregon <\/option>\n            <option value=\"Pennsylvania\"> Pennsylvania <\/option>\n            <option value=\"Rhode Island\"> Rhode Island <\/option>\n            <option value=\"South Carolina\"> South Carolina <\/option>\n            <option value=\"South Dakota\"> South Dakota <\/option>\n            <option value=\"Tennessee\"> Tennessee <\/option>\n            <option value=\"Texas\"> Texas <\/option>\n            <option value=\"Utah\"> Utah <\/option>\n            <option value=\"Vermont\"> Vermont <\/option>\n            <option value=\"Virginia\"> Virginia <\/option>\n            <option value=\"Washington\"> Washington <\/option>\n            <option value=\"West Virginia\"> West Virginia <\/option>\n            <option value=\"Wisconsin\"> Wisconsin <\/option>\n            <option value=\"Wyoming\"> Wyoming <\/option>\n            <option value=\"Alberta\"> Alberta <\/option>\n            <option value=\"British Columbia\"> British Columbia <\/option>\n            <option value=\"Manitoba\"> Manitoba <\/option>\n            <option value=\"New Brunswick\"> New Brunswick <\/option>\n            <option value=\"Newfoundland\"> Newfoundland <\/option>\n            <option value=\"Northwest Territories\"> Northwest Territories <\/option>\n            <option value=\"Nova Scotia\"> Nova Scotia <\/option>\n            <option value=\"Nunavut\"> Nunavut <\/option>\n            <option value=\"Ontario\"> Ontario <\/option>\n            <option value=\"Prince Edward Island\"> Prince Edward Island <\/option>\n            <option value=\"Quebec\"> Quebec <\/option>\n            <option value=\"Saskatchewan\"> Saskatchewan <\/option>\n            <option value=\"Yukon\"> Yukon <\/option>\n            <option value=\"Alabama\"> Alabama <\/option>\n            <option value=\"Alaska\"> Alaska <\/option>\n            <option value=\"Arizona\"> Arizona <\/option>\n            <option value=\"Arkansas\"> Arkansas <\/option>\n            <option value=\"California\"> California <\/option>\n            <option value=\"Colorado\"> Colorado <\/option>\n            <option value=\"Connecticut\"> Connecticut <\/option>\n            <option value=\"District of Columbia\"> District of Columbia <\/option>\n            <option value=\"Delaware\"> Delaware <\/option>\n            <option value=\"Florida\"> Florida <\/option>\n            <option value=\"Georgia\"> Georgia <\/option>\n            <option value=\"Hawaii\"> Hawaii <\/option>\n            <option value=\"Idaho\"> Idaho <\/option>\n            <option value=\"Illinois\"> Illinois <\/option>\n            <option value=\"Indiana\"> Indiana <\/option>\n            <option value=\"Iowa\"> Iowa <\/option>\n            <option value=\"Kansas\"> Kansas <\/option>\n            <option value=\"Kentucky\"> Kentucky <\/option>\n            <option value=\"Louisiana\"> Louisiana <\/option>\n            <option value=\"Maine\"> Maine <\/option>\n            <option value=\"Maryland\"> Maryland <\/option>\n            <option value=\"Massachusetts\"> Massachusetts <\/option>\n            <option value=\"Michigan\"> Michigan <\/option>\n            <option value=\"Minnesota\"> Minnesota <\/option>\n            <option value=\"Mississippi\"> Mississippi <\/option>\n            <option value=\"Missouri\"> Missouri <\/option>\n            <option value=\"Montana\"> Montana <\/option>\n            <option value=\"Nebraska\"> Nebraska <\/option>\n            <option value=\"Nevada\"> Nevada <\/option>\n            <option value=\"New Hampshire\"> New Hampshire <\/option>\n            <option value=\"New Jersey\"> New Jersey <\/option>\n            <option value=\"New Mexico\"> New Mexico <\/option>\n            <option value=\"New York\"> New York <\/option>\n            <option value=\"North Carolina\"> North Carolina <\/option>\n            <option value=\"North Dakota\"> North Dakota <\/option>\n            <option value=\"Ohio\"> Ohio <\/option>\n            <option value=\"Oklahoma\"> Oklahoma <\/option>\n            <option value=\"Oregon\"> Oregon <\/option>\n            <option value=\"Pennsylvania\"> Pennsylvania <\/option>\n            <option value=\"Rhode Island\"> Rhode Island <\/option>\n            <option value=\"South Carolina\"> South Carolina <\/option>\n            <option value=\"South Dakota\"> South Dakota <\/option>\n            <option value=\"Tennessee\"> Tennessee <\/option>\n            <option value=\"Texas\"> Texas <\/option>\n            <option value=\"Utah\"> Utah <\/option>\n            <option value=\"Vermont\"> Vermont <\/option>\n            <option value=\"Virginia\"> Virginia <\/option>\n            <option value=\"Washington\"> Washington <\/option>\n            <option value=\"West Virginia\"> West Virginia <\/option>\n            <option value=\"Wisconsin\"> Wisconsin <\/option>\n            <option value=\"Wyoming\"> Wyoming <\/option>\n            <option value=\"Alberta\"> Alberta <\/option>\n            <option value=\"British Columbia\"> British Columbia <\/option>\n            <option value=\"Manitoba\"> Manitoba <\/option>\n            <option value=\"New Brunswick\"> New Brunswick <\/option>\n            <option value=\"Newfoundland\"> Newfoundland <\/option>\n            <option value=\"Northwest Territories\"> Northwest Territories <\/option>\n            <option value=\"Nova Scotia\"> Nova Scotia <\/option>\n            <option value=\"Nunavut\"> Nunavut <\/option>\n            <option value=\"Ontario\"> Ontario <\/option>\n            <option value=\"Prince Edward Island\"> Prince Edward Island <\/option>\n            <option value=\"Quebec\"> Quebec <\/option>\n            <option value=\"Saskatchewan\"> Saskatchewan <\/option>\n            <option value=\"Yukon\"> Yukon <\/option>\n          <\/select>\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          Zip Code<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_zipCode\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_1\">\n        <label class=\"form-label-left\" id=\"label_1\" for=\"input_1\">\n          E-mail:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_1\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required, Email]\" id=\"input_1\" name=\"q1_email\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_2\">\n        <label class=\"form-label-left\" id=\"label_2\" for=\"input_2\"> Mobile Phone: <\/label>\n        <div id=\"cid_2\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_2\" name=\"q2_mobilePhone\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_24\">\n        <label class=\"form-label-left\" id=\"label_24\" for=\"input_24\">\n          Vendor Category: (check all that apply)<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_24\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_0\" name=\"q24_vendorCategory[]\" value=\"Food\" \/>\n              <label for=\"input_24_0\"> Food <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_1\" name=\"q24_vendorCategory[]\" value=\"Church\" \/>\n              <label for=\"input_24_1\"> Church <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_2\" name=\"q24_vendorCategory[]\" value=\"Merchandise\" \/>\n              <label for=\"input_24_2\"> Merchandise <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_3\" name=\"q24_vendorCategory[]\" value=\"Health\" \/>\n              <label for=\"input_24_3\"> Health <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_4\" name=\"q24_vendorCategory[]\" value=\"Non-profit\" \/>\n              <label for=\"input_24_4\"> Non-profit <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_5\" name=\"q24_vendorCategory[]\" value=\"Entertainment\" \/>\n              <label for=\"input_24_5\"> Entertainment <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_24_6\" name=\"q24_vendorCategory[]\" value=\"Civic\/City\" \/>\n              <label for=\"input_24_6\"> Civic\/City <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_31\">\n        <div id=\"cid_31\" class=\"form-input-wide\">\n          <div id=\"text_31\" class=\"form-html\">\n            <B>\n              * VENDOR LIABILITY DISCLAIMER: (please read carefully)\n            <\/B>\n            <B>\n              <BR>\n            <\/B>\n            <B>\n              <P>\n                <STRONG>\n                  I acknowledge that The Carter G. Woodson Committee for Positive Education of Jacksonville, Inc.\n                <\/STRONG>\n                does not provide liability insurance for the protection of consumers or participants in The Kuumba Festival of Florida, nor for the protection of vendors exhibiting and selling goods such as arts and crafts, food, or any other items at vendor booths exhibiting as a part of The Kuumba Festival.\n              <\/P>\n              <P>\n                In consideration of participating as an exhibitor or food vendor, the I hereby release and forever discharge the Kuumba Festival of Florida\u2019s host organization The Carter G. Woodson Committee For Positive Education of Jacksonville, Inc, its officers, officials and members, and affiliates, both jointly and severally, from any and all action, courses of action, claims and demands for, upon or by reason of any damage, loss or injury which hereafter may be sustained by consumers, spectators or others\n                in consequence of participating in The Kuumba Festival of Florida.\n              <\/P>\n              <P>\n                This release extends and applies to, and also covers and includes, all unknown, unforeseen, unanticipated and unsuspected injuries, damages, losses and liability and the consequences thereof that consumers of products produced and sold in an arts and crafts booth or food booth occupied by me, my employees, or others involved in the selling, consumption or participating in any activities that I or my employees may have on premises at The Kuumba Festival of Florida.\n              <\/P>\n              <P>\n                <B>\n                <\/B>\n              <\/P>\n              <B>\n                <P style=\"DISPLAY: inline! important\">\n                  I hereby agree on behalf of my heirs, executors, and administrators and assign to indemnify, The Kuumba Festival of Florida, The Carter G. Woodson Committee for Positive Education of Jacksonville, Inc and all members, affiliates and officials of The Kuumba Festival, both jointly and severally, and hold harmless from and against any and all actions, claims, demands and liabilities, loss, damage, and expense of whatever kind or nature, including attorney\u2019s fees, which may at any time be incurred by\n                  reason of anyone participating in The Kuumba Festival of Florida.\n                <\/P>\n              <\/B>\n              <P>\n              <\/P>\n              <P>\n                It is further agreed and understood that said allowance of my participation in The Kuumba Festival of Florida is not to be construed as an admission of any liability and acceptance of assumption of responsibility by The Kuumba Festival of Florida nor The Carter G. Woodson Committee for Positive Education of Jacksonville, Inc, it\u2019s officers and members, both jointly and severally.&nbsp; Arts and crafts vendors and food vendors will solely be held liable for damages or as a result of any alleged act\n                of participation of consumers receiving, purchasing, viewing or other participation in arts and crafts booths or food booths operated by my employees, others, or myself at The Kuumba Festival of Florida hosted by the Carter G. Woodson Committee for Positive Education of Jacksonville, Inc.\n              <\/P>\n            <\/B>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_30\">\n        <label class=\"form-label-left\" id=\"label_30\" for=\"input_30\"> I hereby agree that I have read the Terms of Service above. <\/label>\n        <div id=\"cid_30\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_30_0\" name=\"q30_iHereby\" checked=\"checked\" value=\"Yes\" \/>\n              <label for=\"input_30_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_30_1\" name=\"q30_iHereby\" value=\"No\" \/>\n              <label for=\"input_30_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\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          To complete your registration, please enter the message to the right as PROOF that you agree to abide by the terms above as a Kuumba vendor:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <div class=\"form-captcha\">\n            <label for=\"input_15\"> <img alt=\"Captcha - Reload if it's not displayed\" id=\"input_15_captcha\" class=\"form-captcha-image\" style=\"background:url(http:\/\/www.jotform.com\/images\/loader-big.gif) no-repeat center;\" src=\"http:\/\/www.jotform.com\/images\/blank.gif\" width=\"150\" height=\"41\" \/> <\/label>\n            <div style=\"white-space:nowrap;\">\n              <input type=\"text\" id=\"input_15\" class=\"form-textbox validate[required]\" name=\"captcha\" style=\"width:130px;\" \/>\n              <img src=\"http:\/\/www.jotform.com\/images\/reload.png\" alt=\"Reload\" align=\"absmiddle\" style=\"cursor:pointer\" onclick=\"JotForm.reloadCaptcha('input_15');\" \/>\n              <input type=\"hidden\" name=\"captcha_id\" id=\"input_15_captcha_id\" value=\"0\">\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_32\">\n        <label class=\"form-label-left\" id=\"label_32\" for=\"input_32\"> My Products <\/label>\n        <div id=\"cid_32\" class=\"form-input\"><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_32_1001\" name=\"q32_myProducts32[][id]\" value=\"1001\" \/>\n            <label for=\"input_32_1001\">\n              Vendor Fee ($125 after August 7th)<span class=\"form-product-details\"><b>\n                  $<span id=\"\">100.00<\/span>\n                  USD\n                <\/b><\/span>\n            <\/label><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_32_1002\" name=\"q32_myProducts32[][id]\" value=\"1002\" \/>\n            <label for=\"input_32_1002\">\n              Electricity Fee (if needed)<span class=\"form-product-details\"><b>\n                  $<span id=\"\">35.00<\/span>\n                  USD\n                <\/b><\/span>\n            <\/label><\/span>\n          <br \/>\n          <br \/>\n          <b>\n            Total:&nbsp;<span>$<span id=\"payment_total\">0.00<\/span>\n              USD<\/span>\n          <\/b>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_7\">\n        <div id=\"cid_7\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_7\" type=\"submit\" class=\"form-submit-button\">\n              Submit\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=\"80532814152\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"80532814152-80532814152\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

