/*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 i2124705186 = new FrameBuilder("2124705186", 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:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:10px;\n    }\n    .form-label-right{\n        width:150px !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:375px;\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      JotForm.totalCounter({\"input_20_1001\":{\"price\":\"15.00\"},\"input_20_1002\":{\"price\":\"15.00\"},\"input_20_1003\":{\"price\":\"15.00\"},\"input_20_1004\":{\"price\":\"15.00\"},\"input_20_1005\":{\"price\":\"15.00\"}});\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_2124705186\" id=\"2124705186\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"2124705186\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li class=\"form-line\" id=\"id_13\">\n        <div id=\"cid_13\" class=\"form-input-wide\">\n          <div id=\"text_13\" class=\"form-html\">\n            <h1><span style=\"font-size: small;\"><span style=\"font-size: large;\"><span style=\"color: #ff0000; font-family: Tahoma;\">Greetings!<\/span><\/span>\n                <br \/><\/span>\n            <\/h1>\n            <p style=\"margin-right: 0px;\" dir=\"ltr\">\n              <strong>\n                PLEASE READ EVERYTHING & THEN COMPLETE THE VENDOR INFORMATION FORM AT THE BOTTOM\n              <\/strong>\n            <\/p>\n            <p style=\"margin-right: 0px;\" dir=\"ltr\">\n              We are the Payson Main Street Guild, the founders of \"First Friday\" the award winning event right here on Main Street in Payson. In order for us to continue the success of this event, we need the cooperation of all the merchants and vendors alike.\n            <\/p>\n            <p style=\"margin-right: 0px;\" dir=\"ltr\">\n              We request that all merchants refer their VENDORS, ENTERTAINERS & CRAFTERS to the Payson Main Street Guild for coordination. Minette Richardson or Cindy Kofile are available for any questions you may have about this. Minette can be reached at: (928)\n              <br \/>\n              978-1119.\n            <\/p>\n            <ul>\n              <li>\n                <strong>\n                  FEES:\n                <\/strong>\n                All non-Main Street participants will be required to pay a $15 fee to the Payson Main Street Guild to participate in this event, regardless if they have the business&rsquo;s permission to be on their property. These fees go toward the promotion and coordination of this event for all of the participants.\n              <\/li>\n              <li>\n                <strong>\n                  SHOW HOURS:\n                <\/strong>\n                Advertised First Fiday hours will be from 5:00 PM to 8 PM. Please have displays set up and ready by 4:45 PM. If a space is vacant at 4:45 PM, we reserve the right to use that space for another\n                <br \/>\n                vendor.\n              <\/li>\n              <li>\n                <strong>\n                  SET-UP\n                <\/strong>\n                : Set-up after the appointed time and removal prior to 8:00 PM WILL NOT BE PERMITTED. A tablecloth or other covering is REQUIRED in order to make displays as attractive as possible. Unloading time at the front of the merchant should be kept short for the convenience of the merchants customers.\n              <\/li>\n              <li>\n                <strong>\n                  EXHIBITOR PARKING:\n                <\/strong>\n                After unloading, please park in an area approved by the merchant..\n              <\/li>\n              <li>\n                <strong>\n                  ELECTRICITY:\n                <\/strong>\n                You must provide your own extension cords. If for any reason the cord will cross a walkway, it must be taped to the floor using duct tape and covered completely. Small children must be attended at all times, for their safety, as well as out of respect for the property of other exhibitors. Event organizer does not provide childcare. Exhibitors are responsible for cleaning and disposal of all trash from their\n                <br \/>\n                <div>\n                  area.\n                <\/div>\n              <\/li>\n            <\/ul>\n            <p>\n              Sincerely,\n              <br \/>\n              <strong>\n                Payson Main Street\n                <br \/>\n                Guild\n              <\/strong>\n              <br \/>\n              <em>\n                \"The Heart of Payson\"\n              <\/em>\n            <\/p>\n            <p>\n              <strong><span style=\"color: #ff0000; font-family: Tahoma; font-size: large;\">BASIC INFORMATION\n                  <br \/>\n                  REGARDING OUR EVENT:<\/span>\n              <\/strong>\n            <\/p>\n            <p>\n              <strong>\n                BUSINESS LICENSE:\n              <\/strong>\n              <br \/>\n              You are required by the Town of Payson to have a business license if you will be conducting business within the town limits. Here are the licenses available from the Town of Payson: (non-profits are not exempt from this rule)&nbsp;&nbsp;&nbsp;\n            <\/p>\n            <ul>\n              <li>\n                <strong>\n                  <a href=\"http:\/\/www.paysonaz.gov\/Departments\/CommunityDev\/Forms\/OT-BusLicApp.pdf\" target=\"_blank\">Home Based Business License Form<\/a>\n                  :\n                <\/strong>\n                This form is for People who live in Payson limits, and are conducting business out of their homes.\n              <\/li>\n              <li>\n                <strong>\n                  <a href=\"http:\/\/www.paysonaz.gov\/Departments\/CommunityDev\/Forms\/OT-BusLicApp.pdf\" target=\"_blank\">Regular Commercial Business License Form<\/a>\n                  :\n                <\/strong>\n                <br \/>\n                <div>\n                  This form is for all commercial businesses located in Payson limits.\n                <\/div>\n              <\/li>\n              <li>\n                <strong>\n                  <a href=\"http:\/\/www.paysonaz.gov\/Departments\/CommunityDev\/Forms\/OT-BusLicApp.pdf\" target=\"_blank\">Out of Town Business License Form<\/a>\n                  :\n                <\/strong>\n                This form is for people that don't have a business in Payson, but are doing work in Payson.\n              <\/li>\n              <li>\n                <strong>\n                  <a href=\"http:\/\/www.paysonaz.gov\/Departments\/CommunityDev\/Forms\/PEDDLER-BusLicApp.pdf\" target=\"_blank\">Peddlers License Form<\/a>\n                  :\n                <\/strong>\n                This form is for people who are conducting a peddlers, canvasser, solicitor or transient business in Payson.\n              <\/li>\n            <\/ul>\n            <p>\n              More information is available at:\n              <a>http:\/\/www.paysonaz.gov\/<\/a>\n            <\/p>\n            <p>\n              <strong>\n                Arizona State Transaction Privilege Tax\n                <br \/>\n                (TPT)\/Licensing\n              <\/strong>\n            <\/p>\n            <blockquote style=\"margin-right: 0px;\" dir=\"ltr\">\n              (Commonly referred to as a Sales, Resale, Wholesale, Vendor or Tax License) If you are selling a product or engaging in a service subject to transaction privilege tax, you will most likely need to obtain the state&nbsp; transaction privilege tax (TPT) license from the Arizona Department of Revenue (commonly referred to as a sales tax, resale, wholesale, vendor or tax license) and a transaction privilege tax or business\/ occupational license from the city(ies) in which you are based and\/or operate.&nbsp;\n            <\/blockquote>\n            <blockquote style=\"margin-right: 0px;\" dir=\"ltr\">\n              If you have questions about whether or not your business activity is subject to transaction privilege tax\/licensing, check with both the Arizona Department of Revenue and the licensing office(s) of the city(ies) in which you will be based and\/or operate.\n            <\/blockquote>\n            <blockquote style=\"margin-right: 0px;\" dir=\"ltr\">\n              Types of business activities subject to the transaction privilege tax include, but are not limited to: retail sales, restaurants\/bars, hotel\/motel (transient lodging), commercial leasing, advertising, amusements, personal property rentals, real property rentals, construction contracting, owner\/builders, manufactured building, severance (mining, timbering), transportation, printing, publishing, utilities, communications, air\/railroad, private cars\/pipelines and use tax. More information is available\n              at:\n              <a>http:\/\/www.azdor.gov\/<\/a>\n            <\/blockquote>\n            <blockquote style=\"margin-right: 0px;\" dir=\"ltr\">\n              <strong>\n                GILA COUNTY HEALTH DEPT.\n              <\/strong>\n            <\/blockquote>\n            <blockquote style=\"margin-right: 0px;\" dir=\"ltr\">\n              <p>\n                <strong>\n                  Special Events:\n                <\/strong>\n              <\/p>\n              <p>\n                Temporary Food Booths for Special Events &ndash; A Checklist for Minimum Public Health Basics is available for you to use if you plan on opening a temporary food booth for a special event. You will also need to bring a completed Environmental Health Application &ndash; Permit to Operate to either office location. The Payson office is located at 107 W. Frontier, Suite A, Payson, AZ.\n              <\/p>\n              <p>\n                The County permit fees for a food booth at a special event are $30.00 per day, maximum $60.00 per event. Your setup may require a pre-inspection prior to the event.\n              <\/p>\n              <p>\n                <strong>\n                  Foodworker Training:\n                <\/strong>\n              <\/p>\n              <p>\n                On January 6, 2004, Ordinance #04-01, Environmental Health &ndash;&nbsp; Food Service Worker and Food Service Manager Training was approved by the Gila County Board of Supervisors. This ordinance establishes minimum training requirements for food service workers and food service managers who perform duties directly or indirectly related to preparation of food or drink intended for human consumption.\n              <\/p>\n              <p>\n                The Food Worker Training open-book test can be taken at either location of the Gila County Division of Health and Community Services or at any Gila County Library location. The fee for the test is $15.00 and you must pass with a minimum of 70%.\n                <br \/>\n                <br \/>\n                Any individual, who wishes to participate in a Food Service Manager Training, can provide the Gila County Health Department (GCHD) with their contact information. GCHD is currently keeping a list. We will contact these individuals when we have information as to when and where a training will be held. You may also call Ron Thomas of ServSafe directly at 888-793-5136 to find out current information about classes being held.More information is available at:\n                <a>http:\/\/www.gilacountyaz.gov\/index.html<\/a>\n                <br \/>\n                <br \/>\n              <\/p>\n              <p dir=\"ltr\">\n                <strong>\n                  ENTERTAINMENT:\n                <\/strong>\n              <\/p>\n              <p dir=\"ltr\">\n                Music helps make this event lively, and introduces our localmusicians to the community. Now, with that said, there needs to be an understanding that all entertainers cooperate together to help make the&nbsp; experience good for those visiting the event.\n              <\/p>\n              <p dir=\"ltr\">\n                Therefore, we ask that your music be kept low enough not to disturb your neighbors, and to create a \"cone\" of sound that will stay within the area of your merchants parking lot. Please place your speakers in the outer corners facing towards the building so that there is no mixture of your music with your neighboring musician. Please remember that this is an event FOR THE COMMUNITY. Your cooperation in this mater will assure your continued permission to play at our event.\n              <\/p>\n              <p>\n                <br \/>\n                <br \/>\n              <\/p>\n            <\/blockquote>\n          <\/div>\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          Business Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_1\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_1\" name=\"q1_businessName\" 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\"> Contact Name: <\/label>\n        <div id=\"cid_14\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"10\" name=\"q14_contactName[first]\" id=\"first_14\" \/>\n            <label class=\"form-sub-label\" for=\"first_14\" id=\"sublabel_first\"> First Name <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" type=\"text\" size=\"15\" name=\"q14_contactName[last]\" id=\"last_14\" \/>\n            <label class=\"form-sub-label\" for=\"last_14\" id=\"sublabel_last\"> Last Name <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_2\">\n        <label class=\"form-label-left\" id=\"label_2\" for=\"input_2\">\n          E-mail:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_2\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_2\" name=\"q2_E_mail_\" 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          Phone Number<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_11\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"tel\" name=\"q11_phoneNumber11[area]\" id=\"input_11_area\" size=\"3\">\n            -\n            <label class=\"form-sub-label\" for=\"input_11_area\" id=\"sublabel_area\"> Area Code <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox validate[required]\" type=\"tel\" name=\"q11_phoneNumber11[phone]\" id=\"input_11_phone\" size=\"8\">\n            <label class=\"form-sub-label\" for=\"input_11_phone\" id=\"sublabel_phone\"> Phone Number <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_12\">\n        <label class=\"form-label-left\" id=\"label_12\" for=\"input_12\"> Address <\/label>\n        <div id=\"cid_12\" class=\"form-input\">\n          <table summary=\"\" class=\"form-address-table\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n            <tr>\n              <td colspan=\"2\"><span class=\"form-sub-label-container\"><input class=\"form-textbox form-address-line\" type=\"text\" name=\"q12_address[addr_line1]\" id=\"input_12_addr_line1\" \/>\n                  <label class=\"form-sub-label\" for=\"input_12_addr_line1\" id=\"sublabel_addr_line1\"> Street Address <\/label><\/span>\n              <\/td>\n            <\/tr>\n            <tr>\n              <td colspan=\"2\"><span class=\"form-sub-label-container\"><input class=\"form-textbox form-address-line\" type=\"text\" name=\"q12_address[addr_line2]\" id=\"input_12_addr_line2\" size=\"46\" \/>\n                  <label class=\"form-sub-label\" for=\"input_12_addr_line2\" id=\"sublabel_addr_line2\"> Street Address Line 2 <\/label><\/span>\n              <\/td>\n            <\/tr>\n            <tr>\n              <td width=\"50%\"><span class=\"form-sub-label-container\"><input class=\"form-textbox form-address-city\" type=\"text\" name=\"q12_address[city]\" id=\"input_12_city\" size=\"21\" \/>\n                  <label class=\"form-sub-label\" for=\"input_12_city\" id=\"sublabel_city\"> City <\/label><\/span>\n              <\/td>\n              <td><span class=\"form-sub-label-container\"><input class=\"form-textbox form-address-state\" type=\"text\" name=\"q12_address[state]\" id=\"input_12_state\" size=\"22\" \/>\n                  <label class=\"form-sub-label\" for=\"input_12_state\" id=\"sublabel_state\"> State \/ Province <\/label><\/span>\n              <\/td>\n            <\/tr>\n            <tr>\n              <td width=\"50%\"><span class=\"form-sub-label-container\"><input class=\"form-textbox form-address-postal\" type=\"text\" name=\"q12_address[postal]\" id=\"input_12_postal\" size=\"10\" \/>\n                  <label class=\"form-sub-label\" for=\"input_12_postal\" id=\"sublabel_postal\"> Postal \/ Zip Code <\/label><\/span>\n              <\/td>\n              <td><span class=\"form-sub-label-container\"><select class=\"form-dropdown form-address-country\" name=\"q12_address[country]\" id=\"input_12_country\">\n                    <option selected> Please Select <\/option>\n                    <option value=\"United States\"> United States <\/option>\n                    <option value=\"Abkhazia\"> Abkhazia <\/option>\n                    <option value=\"Afghanistan\"> Afghanistan <\/option>\n                    <option value=\"Albania\"> Albania <\/option>\n                    <option value=\"Algeria\"> Algeria <\/option>\n                    <option value=\"American Samoa\"> American Samoa <\/option>\n                    <option value=\"Andorra\"> Andorra <\/option>\n                    <option value=\"Angola\"> Angola <\/option>\n                    <option value=\"Anguilla\"> Anguilla <\/option>\n                    <option value=\"Antigua and Barbuda\"> Antigua and Barbuda <\/option>\n                    <option value=\"Argentina\"> Argentina <\/option>\n                    <option value=\"Armenia\"> Armenia <\/option>\n                    <option value=\"Aruba\"> Aruba <\/option>\n                    <option value=\"Australia\"> Australia <\/option>\n                    <option value=\"Austria\"> Austria <\/option>\n                    <option value=\"Azerbaijan\"> Azerbaijan <\/option>\n                    <option value=\"The Bahamas\"> The Bahamas <\/option>\n                    <option value=\"Bahrain\"> Bahrain <\/option>\n                    <option value=\"Bangladesh\"> Bangladesh <\/option>\n                    <option value=\"Barbados\"> Barbados <\/option>\n                    <option value=\"Belarus\"> Belarus <\/option>\n                    <option value=\"Belgium\"> Belgium <\/option>\n                    <option value=\"Belize\"> Belize <\/option>\n                    <option value=\"Benin\"> Benin <\/option>\n                    <option value=\"Bermuda\"> Bermuda <\/option>\n                    <option value=\"Bhutan\"> Bhutan <\/option>\n                    <option value=\"Bolivia\"> Bolivia <\/option>\n                    <option value=\"Bosnia and Herzegovina\"> Bosnia and Herzegovina <\/option>\n                    <option value=\"Botswana\"> Botswana <\/option>\n                    <option value=\"Brazil\"> Brazil <\/option>\n                    <option value=\"Brunei\"> Brunei <\/option>\n                    <option value=\"Bulgaria\"> Bulgaria <\/option>\n                    <option value=\"Burkina Faso\"> Burkina Faso <\/option>\n                    <option value=\"Burundi\"> Burundi <\/option>\n                    <option value=\"Cambodia\"> Cambodia <\/option>\n                    <option value=\"Cameroon\"> Cameroon <\/option>\n                    <option value=\"Canada\"> Canada <\/option>\n                    <option value=\"Cape Verde\"> Cape Verde <\/option>\n                    <option value=\"Cayman Islands\"> Cayman Islands <\/option>\n                    <option value=\"Central African Republic\"> Central African Republic <\/option>\n                    <option value=\"Chad\"> Chad <\/option>\n                    <option value=\"Chile\"> Chile <\/option>\n                    <option value=\"People's Republic of China\"> People's Republic of China <\/option>\n                    <option value=\"Republic of China\"> Republic of China <\/option>\n                    <option value=\"Christmas Island\"> Christmas Island <\/option>\n                    <option value=\"Cocos (Keeling) Islands\"> Cocos (Keeling) Islands <\/option>\n                    <option value=\"Colombia\"> Colombia <\/option>\n                    <option value=\"Comoros\"> Comoros <\/option>\n                    <option value=\"Congo\"> Congo <\/option>\n                    <option value=\"Cook Islands\"> Cook Islands <\/option>\n                    <option value=\"Costa Rica\"> Costa Rica <\/option>\n                    <option value=\"Cote d'Ivoire\"> Cote d'Ivoire <\/option>\n                    <option value=\"Croatia\"> Croatia <\/option>\n                    <option value=\"Cuba\"> Cuba <\/option>\n                    <option value=\"Cyprus\"> Cyprus <\/option>\n                    <option value=\"Czech Republic\"> Czech Republic <\/option>\n                    <option value=\"Denmark\"> Denmark <\/option>\n                    <option value=\"Djibouti\"> Djibouti <\/option>\n                    <option value=\"Dominica\"> Dominica <\/option>\n                    <option value=\"Dominican Republic\"> Dominican Republic <\/option>\n                    <option value=\"Ecuador\"> Ecuador <\/option>\n                    <option value=\"Egypt\"> Egypt <\/option>\n                    <option value=\"El Salvador\"> El Salvador <\/option>\n                    <option value=\"Equatorial Guinea\"> Equatorial Guinea <\/option>\n                    <option value=\"Eritrea\"> Eritrea <\/option>\n                    <option value=\"Estonia\"> Estonia <\/option>\n                    <option value=\"Ethiopia\"> Ethiopia <\/option>\n                    <option value=\"Falkland Islands\"> Falkland Islands <\/option>\n                    <option value=\"Faroe Islands\"> Faroe Islands <\/option>\n                    <option value=\"Fiji\"> Fiji <\/option>\n                    <option value=\"Finland\"> Finland <\/option>\n                    <option value=\"France\"> France <\/option>\n                    <option value=\"French Polynesia\"> French Polynesia <\/option>\n                    <option value=\"Gabon\"> Gabon <\/option>\n                    <option value=\"The Gambia\"> The Gambia <\/option>\n                    <option value=\"Georgia\"> Georgia <\/option>\n                    <option value=\"Germany\"> Germany <\/option>\n                    <option value=\"Ghana\"> Ghana <\/option>\n                    <option value=\"Gibraltar\"> Gibraltar <\/option>\n                    <option value=\"Greece\"> Greece <\/option>\n                    <option value=\"Greenland\"> Greenland <\/option>\n                    <option value=\"Grenada\"> Grenada <\/option>\n                    <option value=\"Guadeloupe\"> Guadeloupe <\/option>\n                    <option value=\"Guam\"> Guam <\/option>\n                    <option value=\"Guatemala\"> Guatemala <\/option>\n                    <option value=\"Guernsey\"> Guernsey <\/option>\n                    <option value=\"Guinea\"> Guinea <\/option>\n                    <option value=\"Guinea-Bissau\"> Guinea-Bissau <\/option>\n                    <option value=\"Guyana\"> Guyana <\/option>\n                    <option value=\"Haiti\"> Haiti <\/option>\n                    <option value=\"Honduras\"> Honduras <\/option>\n                    <option value=\"Hong Kong\"> Hong Kong <\/option>\n                    <option value=\"Hungary\"> Hungary <\/option>\n                    <option value=\"Iceland\"> Iceland <\/option>\n                    <option value=\"India\"> India <\/option>\n                    <option value=\"Indonesia\"> Indonesia <\/option>\n                    <option value=\"Iran\"> Iran <\/option>\n                    <option value=\"Iraq\"> Iraq <\/option>\n                    <option value=\"Ireland\"> Ireland <\/option>\n                    <option value=\"Israel\"> Israel <\/option>\n                    <option value=\"Italy\"> Italy <\/option>\n                    <option value=\"Jamaica\"> Jamaica <\/option>\n                    <option value=\"Japan\"> Japan <\/option>\n                    <option value=\"Jersey\"> Jersey <\/option>\n                    <option value=\"Jordan\"> Jordan <\/option>\n                    <option value=\"Kazakhstan\"> Kazakhstan <\/option>\n                    <option value=\"Kenya\"> Kenya <\/option>\n                    <option value=\"Kiribati\"> Kiribati <\/option>\n                    <option value=\"North Korea\"> North Korea <\/option>\n                    <option value=\"South Korea\"> South Korea <\/option>\n                    <option value=\"Kosovo\"> Kosovo <\/option>\n                    <option value=\"Kuwait\"> Kuwait <\/option>\n                    <option value=\"Kyrgyzstan\"> Kyrgyzstan <\/option>\n                    <option value=\"Laos\"> Laos <\/option>\n                    <option value=\"Latvia\"> Latvia <\/option>\n                    <option value=\"Lebanon\"> Lebanon <\/option>\n                    <option value=\"Lesotho\"> Lesotho <\/option>\n                    <option value=\"Liberia\"> Liberia <\/option>\n                    <option value=\"Libya\"> Libya <\/option>\n                    <option value=\"Liechtenstein\"> Liechtenstein <\/option>\n                    <option value=\"Lithuania\"> Lithuania <\/option>\n                    <option value=\"Luxembourg\"> Luxembourg <\/option>\n                    <option value=\"Macau\"> Macau <\/option>\n                    <option value=\"Macedonia\"> Macedonia <\/option>\n                    <option value=\"Madagascar\"> Madagascar <\/option>\n                    <option value=\"Malawi\"> Malawi <\/option>\n                    <option value=\"Malaysia\"> Malaysia <\/option>\n                    <option value=\"Maldives\"> Maldives <\/option>\n                    <option value=\"Mali\"> Mali <\/option>\n                    <option value=\"Malta\"> Malta <\/option>\n                    <option value=\"Marshall Islands\"> Marshall Islands <\/option>\n                    <option value=\"Martinique\"> Martinique <\/option>\n                    <option value=\"Mauritania\"> Mauritania <\/option>\n                    <option value=\"Mauritius\"> Mauritius <\/option>\n                    <option value=\"Mayotte\"> Mayotte <\/option>\n                    <option value=\"Mexico\"> Mexico <\/option>\n                    <option value=\"Micronesia\"> Micronesia <\/option>\n                    <option value=\"Moldova\"> Moldova <\/option>\n                    <option value=\"Monaco\"> Monaco <\/option>\n                    <option value=\"Mongolia\"> Mongolia <\/option>\n                    <option value=\"Montenegro\"> Montenegro <\/option>\n                    <option value=\"Montserrat\"> Montserrat <\/option>\n                    <option value=\"Morocco\"> Morocco <\/option>\n                    <option value=\"Mozambique\"> Mozambique <\/option>\n                    <option value=\"Myanmar\"> Myanmar <\/option>\n                    <option value=\"Nagorno-Karabakh\"> Nagorno-Karabakh <\/option>\n                    <option value=\"Namibia\"> Namibia <\/option>\n                    <option value=\"Nauru\"> Nauru <\/option>\n                    <option value=\"Nepal\"> Nepal <\/option>\n                    <option value=\"Netherlands\"> Netherlands <\/option>\n                    <option value=\"Netherlands Antilles\"> Netherlands Antilles <\/option>\n                    <option value=\"New Caledonia\"> New Caledonia <\/option>\n                    <option value=\"New Zealand\"> New Zealand <\/option>\n                    <option value=\"Nicaragua\"> Nicaragua <\/option>\n                    <option value=\"Niger\"> Niger <\/option>\n                    <option value=\"Nigeria\"> Nigeria <\/option>\n                    <option value=\"Niue\"> Niue <\/option>\n                    <option value=\"Norfolk Island\"> Norfolk Island <\/option>\n                    <option value=\"Turkish Republic of Northern Cyprus\"> Turkish Republic of Northern Cyprus <\/option>\n                    <option value=\"Northern Mariana\"> Northern Mariana <\/option>\n                    <option value=\"Norway\"> Norway <\/option>\n                    <option value=\"Oman\"> Oman <\/option>\n                    <option value=\"Pakistan\"> Pakistan <\/option>\n                    <option value=\"Palau\"> Palau <\/option>\n                    <option value=\"Palestine\"> Palestine <\/option>\n                    <option value=\"Panama\"> Panama <\/option>\n                    <option value=\"Papua New Guinea\"> Papua New Guinea <\/option>\n                    <option value=\"Paraguay\"> Paraguay <\/option>\n                    <option value=\"Peru\"> Peru <\/option>\n                    <option value=\"Philippines\"> Philippines <\/option>\n                    <option value=\"Pitcairn Islands\"> Pitcairn Islands <\/option>\n                    <option value=\"Poland\"> Poland <\/option>\n                    <option value=\"Portugal\"> Portugal <\/option>\n                    <option value=\"Puerto Rico\"> Puerto Rico <\/option>\n                    <option value=\"Qatar\"> Qatar <\/option>\n                    <option value=\"Romania\"> Romania <\/option>\n                    <option value=\"Russia\"> Russia <\/option>\n                    <option value=\"Rwanda\"> Rwanda <\/option>\n                    <option value=\"Saint Barthelemy\"> Saint Barthelemy <\/option>\n                    <option value=\"Saint Helena\"> Saint Helena <\/option>\n                    <option value=\"Saint Kitts and Nevis\"> Saint Kitts and Nevis <\/option>\n                    <option value=\"Saint Lucia\"> Saint Lucia <\/option>\n                    <option value=\"Saint Martin\"> Saint Martin <\/option>\n                    <option value=\"Saint Pierre and Miquelon\"> Saint Pierre and Miquelon <\/option>\n                    <option value=\"Saint Vincent and the Grenadines\"> Saint Vincent and the Grenadines <\/option>\n                    <option value=\"Samoa\"> Samoa <\/option>\n                    <option value=\"San Marino\"> San Marino <\/option>\n                    <option value=\"Sao Tome and Principe\"> Sao Tome and Principe <\/option>\n                    <option value=\"Saudi Arabia\"> Saudi Arabia <\/option>\n                    <option value=\"Senegal\"> Senegal <\/option>\n                    <option value=\"Serbia\"> Serbia <\/option>\n                    <option value=\"Seychelles\"> Seychelles <\/option>\n                    <option value=\"Sierra Leone\"> Sierra Leone <\/option>\n                    <option value=\"Singapore\"> Singapore <\/option>\n                    <option value=\"Slovakia\"> Slovakia <\/option>\n                    <option value=\"Slovenia\"> Slovenia <\/option>\n                    <option value=\"Solomon Islands\"> Solomon Islands <\/option>\n                    <option value=\"Somalia\"> Somalia <\/option>\n                    <option value=\"Somaliland\"> Somaliland <\/option>\n                    <option value=\"South Africa\"> South Africa <\/option>\n                    <option value=\"South Ossetia\"> South Ossetia <\/option>\n                    <option value=\"Spain\"> Spain <\/option>\n                    <option value=\"Sri Lanka\"> Sri Lanka <\/option>\n                    <option value=\"Sudan\"> Sudan <\/option>\n                    <option value=\"Suriname\"> Suriname <\/option>\n                    <option value=\"Svalbard\"> Svalbard <\/option>\n                    <option value=\"Swaziland\"> Swaziland <\/option>\n                    <option value=\"Sweden\"> Sweden <\/option>\n                    <option value=\"Switzerland\"> Switzerland <\/option>\n                    <option value=\"Syria\"> Syria <\/option>\n                    <option value=\"Taiwan\"> Taiwan <\/option>\n                    <option value=\"Tajikistan\"> Tajikistan <\/option>\n                    <option value=\"Tanzania\"> Tanzania <\/option>\n                    <option value=\"Thailand\"> Thailand <\/option>\n                    <option value=\"Timor-Leste\"> Timor-Leste <\/option>\n                    <option value=\"Togo\"> Togo <\/option>\n                    <option value=\"Tokelau\"> Tokelau <\/option>\n                    <option value=\"Tonga\"> Tonga <\/option>\n                    <option value=\"Transnistria Pridnestrovie\"> Transnistria Pridnestrovie <\/option>\n                    <option value=\"Trinidad and Tobago\"> Trinidad and Tobago <\/option>\n                    <option value=\"Tristan da Cunha\"> Tristan da Cunha <\/option>\n                    <option value=\"Tunisia\"> Tunisia <\/option>\n                    <option value=\"Turkey\"> Turkey <\/option>\n                    <option value=\"Turkmenistan\"> Turkmenistan <\/option>\n                    <option value=\"Turks and Caicos Islands\"> Turks and Caicos Islands <\/option>\n                    <option value=\"Tuvalu\"> Tuvalu <\/option>\n                    <option value=\"Uganda\"> Uganda <\/option>\n                    <option value=\"Ukraine\"> Ukraine <\/option>\n                    <option value=\"United Arab Emirates\"> United Arab Emirates <\/option>\n                    <option value=\"United Kingdom\"> United Kingdom <\/option>\n                    <option value=\"Uruguay\"> Uruguay <\/option>\n                    <option value=\"Uzbekistan\"> Uzbekistan <\/option>\n                    <option value=\"Vanuatu\"> Vanuatu <\/option>\n                    <option value=\"Vatican City\"> Vatican City <\/option>\n                    <option value=\"Venezuela\"> Venezuela <\/option>\n                    <option value=\"Vietnam\"> Vietnam <\/option>\n                    <option value=\"British Virgin Islands\"> British Virgin Islands <\/option>\n                    <option value=\"US Virgin Islands\"> US Virgin Islands <\/option>\n                    <option value=\"Wallis and Futuna\"> Wallis and Futuna <\/option>\n                    <option value=\"Western Sahara\"> Western Sahara <\/option>\n                    <option value=\"Yemen\"> Yemen <\/option>\n                    <option value=\"Zambia\"> Zambia <\/option>\n                    <option value=\"Zimbabwe\"> Zimbabwe <\/option>\n                    <option value=\"other\"> Other <\/option>\n                  <\/select>\n                  <label class=\"form-sub-label\" for=\"input_12_country\" id=\"sublabel_country\"> Country <\/label><\/span>\n              <\/td>\n            <\/tr>\n          <\/table>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\"> Type of service: <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_15\" name=\"q15_typeOf\">\n            <option>  <\/option>\n            <option value=\"Food Service\"> Food Service <\/option>\n            <option value=\"Musical Entertainment\"> Musical Entertainment <\/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\"> Please describe in detail what you will be doing at this event: <\/label>\n        <div id=\"cid_17\" class=\"form-input\">\n          <textarea id=\"input_17\" class=\"form-textarea\" name=\"q17_pleaseDescribe\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_18\">\n        <label class=\"form-label-left\" id=\"label_18\" for=\"input_18\"> Main Street Merchant you have arranged space with: <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_18\" name=\"q18_mainStreet\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\"> First Friday Date you will be paying for: <\/label>\n        <div id=\"cid_20\" class=\"form-input\"><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_20_1001\" name=\"q20_firstFriday20[][id]\" value=\"1001\" \/>\n            <label for=\"input_20_1001\">\n              August 6, 2010 - First Friday<span class=\"form-product-details\"><b>\n                  $<span id=\"\">15.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_20_1002\" name=\"q20_firstFriday20[][id]\" value=\"1002\" \/>\n            <label for=\"input_20_1002\">\n              September 3, 2010 - First Friday<span class=\"form-product-details\"><b>\n                  $<span id=\"\">15.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_20_1003\" name=\"q20_firstFriday20[][id]\" value=\"1003\" \/>\n            <label for=\"input_20_1003\">\n              October 1, 2010 - First Friday<span class=\"form-product-details\"><b>\n                  $<span id=\"\">15.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_20_1004\" name=\"q20_firstFriday20[][id]\" value=\"1004\" \/>\n            <label for=\"input_20_1004\">\n              November 5, 2010 - First Friday<span class=\"form-product-details\"><b>\n                  $<span id=\"\">15.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_20_1005\" name=\"q20_firstFriday20[][id]\" value=\"1005\" \/>\n            <label for=\"input_20_1005\">\n              December 3, 2010 - First Friday<span class=\"form-product-details\"><b>\n                  $<span id=\"\">15.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_9\">\n        <div id=\"cid_9\" class=\"form-input-wide\">\n          <div style=\"text-align:left\" class=\"form-buttons-wrapper\">\n            <button id=\"input_9\" type=\"submit\" class=\"form-submit-button\">\n              Submit\n            <\/button>\n            &nbsp;\n            <button id=\"input_reset_9\" type=\"reset\" class=\"form-submit-reset\">\n              Clear Form\n            <\/button>\n            &nbsp;\n            <button id=\"input_print_9\" style=\"margin-left:25px;\" class=\"form-submit-print\" type=\"button\">\n              <img src=\"http:\/\/www.jotform.com\/images\/printer.png\" align=\"absmiddle\" \/>\n              Print Form\n            <\/button>\n          <\/div>\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              Join the Guild & save $60\/month.\n            <\/p>\n            <p>\n              <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><\/a>\n            <\/p>\n            <p>\n              <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><\/a>\n            <\/p>\n            <form action=\"https:\/\/www.paypal.com\/cgi-bin\/webscr\" method=\"post\">\n              <p>\n                <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" \/><\/a>\n              <\/p>\n              <p>\n                <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"CSDE7YBH4T4LC\" \/><\/a>\n              <\/p>\n              <p>\n                <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><input alt=\"PayPal - The safer, easier way to pay online!\" name=\"submit\" src=\"https:\/\/www.paypal.com\/en_US\/i\/btn\/btn_subscribeCC_LG.gif\" type=\"image\" \/><\/a>\n              <\/p>\n              <p>\n                <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><img src=\"https:\/\/www.paypal.com\/en_US\/i\/scr\/pixel.gif\" border=\"0\" alt=\"\" width=\"1\" height=\"1\" \/><\/a>\n              <\/p>\n              <p>\n                <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><\/a>\n              <\/p>\n            <\/form>\n            <p>\n              <a href=\"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_s-xclick&hosted_button_id=CSDE7YBH4T4LC\" target=\"_blank\"><\/a>\n            <\/p>\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=\"2124705186\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"2124705186-2124705186\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

