/*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 i1225055030 = new FrameBuilder("1225055030", 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<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:white;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:690px;\n        background:white;\n        color:#000000 !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.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.description('input_11', 'please fill your name or company name');\n      $('input_32').hint('ex: myname@example.com');\n      JotForm.description('input_20', 'Select all that apply');\n      JotForm.initCaptcha('input_31');\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_1225055030\" id=\"1225055030\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"1225055030\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_34\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_34\" class=\"form-header\">\n            Feedback Form:\n          <\/h3>\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            * Indicates Required Field\n          <\/div>\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          Name:<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_name\" size=\"40\" maxlength=\"100\" \/>\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          E-mail<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_32\" class=\"form-input\">\n          <input type=\"email\" class=\"form-textbox validate[required, Email]\" id=\"input_32\" name=\"q32_email32\" size=\"30\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_13\">\n        <label class=\"form-label-left\" id=\"label_13\" for=\"input_13\"> Title: <\/label>\n        <div id=\"cid_13\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_13\" name=\"q13_title\" size=\"40\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_56\">\n        <label class=\"form-label-left\" id=\"label_56\" for=\"input_56\"> Contact information previously shared <\/label>\n        <div id=\"cid_56\" 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_56_0\" name=\"q56_contactInformation\" value=\"yes\" \/>\n              <label for=\"input_56_0\"> yes <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_49\">\n        <div id=\"cid_49\" class=\"form-input-wide\">\n          <div id=\"text_49\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <b style=\"\">\n                Is your feedback about an interview transcript?\n              <\/b>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_57\">\n        <label class=\"form-label-left\" id=\"label_57\" for=\"input_57\"> Which Interview: <\/label>\n        <div id=\"cid_57\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:250px\" id=\"input_57\" name=\"q57_whichInterview\">\n            <option>  <\/option>\n            <option value=\"Dr. David Abram \"> Dr. David Abram <\/option>\n            <option value=\"Dr. Marilyn Jager Adams   \"> Dr. Marilyn Jager Adams <\/option>\n            <option value=\"Dr. Zvia Breznitz \"> Dr. Zvia Breznitz <\/option>\n            <option value=\"Dr. Thomas Cable  \"> Dr. Thomas Cable <\/option>\n            <option value=\"Dr. Marketa Caravolas \"> Dr. Marketa Caravolas <\/option>\n            <option value=\"Dr. Anne Cunningham    \"> Dr. Anne Cunningham <\/option>\n            <option value=\"Dr. Terrence Deacon  \"> Dr. Terrence Deacon <\/option>\n            <option value=\"Dr. Guy Deutscher \"> Dr. Guy Deutscher <\/option>\n            <option value=\"Chris Doherty  \"> Chris Doherty <\/option>\n            <option value=\"Dr.Johanna Drucker  \"> Dr.Johanna Drucker <\/option>\n            <option value=\"Siegfried Engelmann \"> Siegfried Engelmann <\/option>\n            <option value=\"John H. Fisher  \"> John H. Fisher <\/option>\n            <option value=\"Dr. Alex Granzin   \"> Dr. Alex Granzin <\/option>\n            <option value=\"Dr.Mark T. Greenberg \"> Dr.Mark T. Greenberg <\/option>\n            <option value=\"Dr. Erik Hanushek \"> Dr. Erik Hanushek <\/option>\n            <option value=\"Dr. James J. Heckman \"> Dr. James J. Heckman <\/option>\n            <option value=\"Nancy Hennessy  \"> Nancy Hennessy <\/option>\n            <option value=\"Dr. Edward Kame'enui  \"> Dr. Edward Kame'enui <\/option>\n            <option value=\"Dr. Christof Koch \"> Dr. Christof Koch <\/option>\n            <option value=\"Rick Lavoie  \"> Rick Lavoie <\/option>\n            <option value=\"Dr. Peter Leone  \"> Dr. Peter Leone <\/option>\n            <option value=\"Dr. Mel Levine \"> Dr. Mel Levine <\/option>\n            <option value=\"Pat Lindamood and Nanci Bell\"> Pat Lindamood and Nanci Bell <\/option>\n            <option value=\"Dr. G. Reid Lyon  \"> Dr. G. Reid Lyon <\/option>\n            <option value=\"Dr. Michael Merzenich   \"> Dr. Michael Merzenich <\/option>\n            <option value=\"Dr. Louisa Moats  \"> Dr. Louisa Moats <\/option>\n            <option value=\"Dr. Donald L. Nathanson  \"> Dr. Donald L. Nathanson <\/option>\n            <option value=\"Dr.Charles Perfetti \"> Dr.Charles Perfetti <\/option>\n            <option value=\"Dr. Keith Rayner  \"> Dr. Keith Rayner <\/option>\n            <option value=\"Dr. Malcolm Richardson \"> Dr. Malcolm Richardson <\/option>\n            <option value=\"Dr. Todd Risley \"> Dr. Todd Risley <\/option>\n            <option value=\"Arthur J. Rolnick \"> Arthur J. Rolnick <\/option>\n            <option value=\"Dr.John Searle  \"> Dr.John Searle <\/option>\n            <option value=\"Dr. Timothy Shanahan \"> Dr. Timothy Shanahan <\/option>\n            <option value=\"Dr. Sally Shaywitz  \"> Dr. Sally Shaywitz <\/option>\n            <option value=\"Leonard Shlain \"> Leonard Shlain <\/option>\n            <option value=\"Dr. Jack Shonkoff  \"> Dr. Jack Shonkoff <\/option>\n            <option value=\"Dr. Keith Stanovich  \"> Dr. Keith Stanovich <\/option>\n            <option value=\"Robert Sweet    \"> Robert Sweet <\/option>\n            <option value=\"Dr. Paula Tallal  \"> Dr. Paula Tallal <\/option>\n            <option value=\"Dr. Richard Venezky  \"> Dr. Richard Venezky <\/option>\n            <option value=\"Robert Wedgeworth  \"> Robert Wedgeworth <\/option>\n            <option value=\"James Wendorf  \"> James Wendorf <\/option>\n            <option value=\"Dr. Grover (Russ) Whitehurst  \"> Dr. Grover (Russ) Whitehurst <\/option>\n            <option value=\"Dr. Maryanne Wolf \"> Dr. Maryanne Wolf <\/option>\n            <option value=\"Robert Sweet  \"> Robert Sweet <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_58\">\n        <label class=\"form-label-left\" id=\"label_58\" for=\"input_58\"> Rate the Interview: <\/label>\n        <div id=\"cid_58\" class=\"form-input\">\n          <table summary=\"\" cellpadding=\"4\" cellspacing=\"0\" class=\"form-scale-table\">\n            <tr>\n              <th>\n                &nbsp;\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_1\"> 1 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_2\"> 2 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_3\"> 3 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_4\"> 4 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_5\"> 5 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_6\"> 6 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_7\"> 7 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_8\"> 8 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_9\"> 9 <\/label>\n              <\/th>\n              <th align=\"center\">\n                <label for=\"input_58_10\"> 10 <\/label>\n              <\/th>\n              <th>\n                &nbsp;\n              <\/th>\n            <\/tr>\n            <tr>\n              <td>\n                <label for=\"input_58_1\"> Terrible <\/label>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"1\" title=\"1\" id=\"input_58_1\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"2\" title=\"2\" id=\"input_58_2\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"3\" title=\"3\" id=\"input_58_3\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"4\" title=\"4\" id=\"input_58_4\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"5\" title=\"5\" id=\"input_58_5\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"6\" title=\"6\" id=\"input_58_6\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"7\" title=\"7\" id=\"input_58_7\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"8\" title=\"8\" id=\"input_58_8\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"9\" title=\"9\" id=\"input_58_9\" \/>\n              <\/td>\n              <td align=\"center\">\n                <input class=\"form-radio\" type=\"radio\" name=\"q58_rateThe58\" value=\"10\" title=\"10\" id=\"input_58_10\" \/>\n              <\/td>\n              <td>\n                <label for=\"input_58_10\"> Excellent <\/label>\n              <\/td>\n            <\/tr>\n          <\/table>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_59\">\n        <label class=\"form-label-left\" id=\"label_59\" for=\"input_59\"> Comments about the Interview: <\/label>\n        <div id=\"cid_59\" class=\"form-input\">\n          <textarea id=\"input_59\" class=\"form-textarea\" name=\"q59_commentsAbout\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_60\">\n        <div id=\"cid_60\" class=\"form-input-wide\">\n          <div id=\"text_60\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <b style=\"\">\n                Is your feedback about our project in general?\n              <\/b>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_61\">\n        <label class=\"form-label-left\" id=\"label_61\" for=\"input_61\"> Type of Feedback <\/label>\n        <div id=\"cid_61\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_61\" name=\"q61_typeOf\">\n            <option>  <\/option>\n            <option value=\"Question\"> Question <\/option>\n            <option value=\"Suggestion\"> Suggestion <\/option>\n            <option value=\"Complaint\"> Complaint <\/option>\n            <option value=\"Problem\/Error\"> Problem\/Error <\/option>\n            <option value=\"Other\"> Other <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_62\">\n        <label class=\"form-label-left\" id=\"label_62\" for=\"input_62\"> Comments our Project in General <\/label>\n        <div id=\"cid_62\" class=\"form-input\">\n          <textarea id=\"input_62\" class=\"form-textarea\" name=\"q62_commentsOur\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_64\">\n        <div id=\"cid_64\" class=\"form-input-wide\">\n          <div id=\"text_64\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <b style=\"\">\n                Is your feedback about our website?\n              <\/b>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_63\">\n        <label class=\"form-label-left\" id=\"label_63\" for=\"input_63\"> Type of Feedback <\/label>\n        <div id=\"cid_63\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_63\" name=\"q63_typeOf\">\n            <option>  <\/option>\n            <option value=\"Question\"> Question <\/option>\n            <option value=\"Suggestion\"> Suggestion <\/option>\n            <option value=\"Complaint\"> Complaint <\/option>\n            <option value=\"Problem\/Error\"> Problem\/Error <\/option>\n            <option value=\"Other\"> Other <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_65\">\n        <label class=\"form-label-left\" id=\"label_65\" for=\"input_65\"> Comments our Website <\/label>\n        <div id=\"cid_65\" class=\"form-input\">\n          <textarea id=\"input_65\" class=\"form-textarea\" name=\"q65_commentsOur65\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column\" id=\"id_48\">\n        <div id=\"cid_48\" class=\"form-input-wide\">\n          <div id=\"text_48\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <b style=\"\">\n                Tell us as much more about yourself as you care to.&nbsp;\n              <\/b>\n              <b style=\"\">\n              <\/b>\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_12\">\n        <label class=\"form-label-left\" id=\"label_12\" for=\"input_12\"> Organization: <\/label>\n        <div id=\"cid_12\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_12\" name=\"q12_organization\" size=\"40\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_40\">\n        <label class=\"form-label-left\" id=\"label_40\" for=\"input_40\"> Address: <\/label>\n        <div id=\"cid_40\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_40\" name=\"q40_address\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_41\">\n        <label class=\"form-label-left\" id=\"label_41\" for=\"input_41\"> City: <\/label>\n        <div id=\"cid_41\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_41\" name=\"q41_city\" 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\"> State: <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_15\" name=\"q15_state15\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_16\">\n        <label class=\"form-label-left\" id=\"label_16\" for=\"input_16\"> ZIP: <\/label>\n        <div id=\"cid_16\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_16\" name=\"q16_zip\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_42\">\n        <label class=\"form-label-left\" id=\"label_42\" for=\"input_42\"> Country (if not USA) <\/label>\n        <div id=\"cid_42\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_42\" name=\"q42_countryif\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_43\">\n        <label class=\"form-label-left\" id=\"label_43\" for=\"input_43\"> Tel <\/label>\n        <div id=\"cid_43\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_43\" name=\"q43_tel\" size=\"20\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_25\">\n        <label class=\"form-label-left\" id=\"label_25\" for=\"input_25\"> How did you find out about our project? <\/label>\n        <div id=\"cid_25\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:250px\" id=\"input_25\" name=\"q25_howDid25\">\n            <option>  <\/option>\n            <option value=\"Webinar\"> Webinar <\/option>\n            <option value=\"Edweek\"> Edweek <\/option>\n            <option value=\"PBS &quot;New Science of Learning&quot;\"> PBS \"New Science of Learning\" <\/option>\n            <option value=\"NATIONAL CENTER FOR FAMILY LITERACY\"> NATIONAL CENTER FOR FAMILY LITERACY <\/option>\n            <option value=\"U.S. DEPT. OF ED.\"> U.S. DEPT. OF ED. <\/option>\n            <option value=\"NICHD\"> NICHD <\/option>\n            <option value=\"INTERNATIONAL READING ASSOCIATION\"> INTERNATIONAL READING ASSOCIATION <\/option>\n            <option value=\"NATIONAL EDUCATION ASSOCIATION\"> NATIONAL EDUCATION ASSOCIATION <\/option>\n            <option value=\"NEW HORIZONS FOR LEARNING\"> NEW HORIZONS FOR LEARNING <\/option>\n            <option value=\"LITERACY ORGANIZATION\"> LITERACY ORGANIZATION <\/option>\n            <option value=\"OTHER ORGANIZATION\"> OTHER ORGANIZATION <\/option>\n            <option value=\"EDUCATION NEWS\"> EDUCATION NEWS <\/option>\n            <option value=\"EMAIL FROM SOMEONE I KNOW\"> EMAIL FROM SOMEONE I KNOW <\/option>\n            <option value=\"WEB SEARCH\"> WEB SEARCH <\/option>\n            <option value=\"VIRTUALOLOGY\"> VIRTUALOLOGY <\/option>\n            <option value=\"SCHWAB LEARNING\"> SCHWAB LEARNING <\/option>\n            <option value=\"WRIGHTSLAW\"> WRIGHTSLAW <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <label class=\"form-label-left\" id=\"label_27\" for=\"input_27\"> What interests you about our project? <\/label>\n        <div id=\"cid_27\" class=\"form-input\">\n          <textarea id=\"input_27\" class=\"form-textarea\" name=\"q27_whatInterests\" cols=\"40\" rows=\"4\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\"> I am writing as: <\/label>\n        <div id=\"cid_20\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_0\" name=\"q20_iAm20[]\" value=\"Parent\" \/>\n              <label for=\"input_20_0\"> Parent <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_1\" name=\"q20_iAm20[]\" value=\"Learner\" \/>\n              <label for=\"input_20_1\"> Learner <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_2\" name=\"q20_iAm20[]\" value=\"Educator\" \/>\n              <label for=\"input_20_2\"> Educator <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_3\" name=\"q20_iAm20[]\" value=\"Business Person\" \/>\n              <label for=\"input_20_3\"> Business Person <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_4\" name=\"q20_iAm20[]\" value=\"Citizen\" \/>\n              <label for=\"input_20_4\"> Citizen <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_20_5\" name=\"q20_iAm20[]\" value=\"other\" \/>\n              <label for=\"input_20_5\"> other <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_51\">\n        <div id=\"cid_51\" class=\"form-input-wide\">\n          <div id=\"text_51\" class=\"form-html\">\n            <p class=\"MsoNormal\">\n              <b style=\"\">\n                Final Comments or Requests?\n              <\/b>\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\"> Comments: <\/label>\n        <div id=\"cid_28\" class=\"form-input\">\n          <textarea id=\"input_28\" class=\"form-textarea\" name=\"q28_comments\" cols=\"40\" rows=\"4\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_30\">\n        <div id=\"cid_30\" class=\"form-input-wide\">\n          <div id=\"text_30\" class=\"form-html\">\n            Note: Be sure to add 'code@implicity.org' to your email system's approved sender list in order to receive our email updates.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_31\">\n        <label class=\"form-label-left\" id=\"label_31\" for=\"input_31\">\n          Enter the message as it's shown<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_31\" class=\"form-input\">\n          <div class=\"form-captcha\">\n            <label for=\"input_31\"> <img alt=\"Captcha - Reload if it's not displayed\" id=\"input_31_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_31\" 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_31');\" \/>\n              <input type=\"hidden\" name=\"captcha_id\" id=\"input_31_captcha_id\" value=\"0\">\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_1\">\n        <div id=\"cid_1\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_1\" 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=\"1225055030\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"1225055030-1225055030\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

