/*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 i81391807252 = new FrameBuilder("81391807252", 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:5px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:transparent;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:394px;\n        background:transparent;\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.autoCompletes['input_86'] = 'Item 2|Item 3';\n      JotForm.setCalendar(\"83\");\n      JotForm.description('input_10', 'Answer the question in Spanish, do not translate it to English.');\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_81391807252\" id=\"81391807252\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"81391807252\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_11\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_11\" class=\"form-header\">\n            Placement Test\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_84\">\n        <div id=\"cid_84\" class=\"form-input-wide\">\n          <div id=\"text_84\" class=\"form-html\">\n            This is a free placement test that you can complete online. Once you submit it, we will contact you within 3 business days, recommending your most appropriate level.\n          <\/div>\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          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_name\" 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          Phone Number<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_phoneNumber\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_85\">\n        <label class=\"form-label-left\" id=\"label_85\" for=\"input_85\">\n          Email Address<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_85\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_85\" name=\"q85_emailAddress\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_3\">\n        <label class=\"form-label-left\" id=\"label_3\" for=\"input_3\"> What location are you interested in registering for? <\/label>\n        <div id=\"cid_3\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_3\" name=\"q3_whatLocation\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_87\">\n        <label class=\"form-label-left\" id=\"label_87\" for=\"input_87\"> How often do you want to take a class? <\/label>\n        <div id=\"cid_87\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_87\" name=\"q87_howOften\">\n            <option>  <\/option>\n            <option value=\"Once a week\"> Once a week <\/option>\n            <option value=\"Twice a week\"> Twice a week <\/option>\n            <option value=\"4 times a week (semi-intensive)\"> 4 times a week (semi-intensive) <\/option>\n            <option value=\"5 times a week (super-intensive)\"> 5 times a week (super-intensive) <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_86\">\n        <label class=\"form-label-left\" id=\"label_86\" for=\"input_86\"> Why do you want to learn Spanish? <\/label>\n        <div id=\"cid_86\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_86\" name=\"q86_whyDo\" autocomplete=\"off\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_83\">\n        <label class=\"form-label-left\" id=\"label_83\" for=\"input_83\"> When does the class you wish to enrol in begin? <\/label>\n        <div id=\"cid_83\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_83\" name=\"q83_whenDoes[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_83\" id=\"sublabel_month\"> Month <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_83\" name=\"q83_whenDoes[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"09\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_83\" id=\"sublabel_day\"> Day <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_83\" name=\"q83_whenDoes[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_83\" id=\"sublabel_year\"> Year <\/label><\/span><span class=\"form-sub-label-container\"><div id=\"at_83\">\n              at\n            <\/div>\n            <label class=\"form-sub-label\" for=\"at_83\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"hour_83\" name=\"q83_whenDoes[hour]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"13\" \/><span class=\"date-separate\">&nbsp;\/<\/span>\n            <label class=\"form-sub-label\" for=\"hour_83\" id=\"sublabel_hour\"> Hour <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"min_83\" name=\"q83_whenDoes[min]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"00\" \/>\n            <label class=\"form-sub-label\" for=\"min_83\" id=\"sublabel_minutes\"> Minutes <\/label><\/span><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" id=\"ampm_83\" name=\"q83_whenDoes[ampm]\">\n              <option value=\"AM\"> AM <\/option>\n              <option value=\"PM\"> PM <\/option>\n            <\/select>\n            <label class=\"form-sub-label\" for=\"ampm_83\"> &nbsp;&nbsp;&nbsp; <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_83_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_83_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_80\">\n      <li id=\"cid_80\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_80\"><span class=\"form-collapse-mid\" id=\"collapse-text_80\">Begin Test<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li id=\"cid_12\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_12\" class=\"form-header\">\n            Part I - Introduction\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_9\">\n        <div id=\"cid_9\" class=\"form-input-wide\">\n          <div id=\"text_9\" class=\"form-html\">\n            Please answer the following questions, IN SPANISH, using the correct verb conjugation.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_10\">\n        <label class=\"form-label-left\" id=\"label_10\" for=\"input_10\"> 1. \u00bfC\u00f3mo se llama? <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_10\" name=\"q10_1como\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_13\">\n        <label class=\"form-label-left\" id=\"label_13\" for=\"input_13\"> 2. \u00bfC\u00f3mo est\u00e1? <\/label>\n        <div id=\"cid_13\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_13\" name=\"q13_2como\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_14\">\n        <label class=\"form-label-left\" id=\"label_14\" for=\"input_14\"> 3. \u00bfDe d\u00f3nde es? <\/label>\n        <div id=\"cid_14\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_14\" name=\"q14_3de\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\"> 4. \u00bfD\u00f3nde vive? <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_15\" name=\"q15_4donde\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <label class=\"form-label-left\" id=\"label_17\" for=\"input_17\"> 5. \u00bfQu\u00e9 lenguas habla? <\/label>\n        <div id=\"cid_17\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_17\" name=\"q17_5que\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\"> 6. \u00bfCu\u00e1nto cuesta un taxi de su casa al aeropuerto? <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_19\" name=\"q19_6cuanto\" 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\"> 7. \u00bfCu\u00e1ndo es su cumplea\u00f1os? <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_18\" name=\"q18_7cuando\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\"> 8. \u00bfTiene un carro o una bicicleta? <\/label>\n        <div id=\"cid_20\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_20\" name=\"q20_8tiene\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_21\">\n        <label class=\"form-label-left\" id=\"label_21\" for=\"input_21\"> 9. \u00bfQu\u00e9 peri\u00f3dico lee? <\/label>\n        <div id=\"cid_21\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_21\" name=\"q21_9que\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_22\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_22\" class=\"form-header\">\n            Part II - Verbs\n          <\/h2>\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            Please type in the appropriately conjugated verb in the boxes provided.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_25\">\n        <div id=\"cid_25\" class=\"form-input-wide\">\n          <div id=\"text_25\" class=\"form-html\">\n            Present tense\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_26\">\n        <label class=\"form-label-left\" id=\"label_26\" for=\"input_26\"> 10. (Nosotros, viajar) <\/label>\n        <div id=\"cid_26\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_26\" name=\"q26_10nosotros\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <div id=\"cid_27\" class=\"form-input-wide\">\n          <div id=\"text_27\" class=\"form-html\">\n            a Puerto Rico\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\"> 11. (\u00e9l, ser-estar) <\/label>\n        <div id=\"cid_28\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_28\" name=\"q28_11el\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_29\">\n        <div id=\"cid_29\" class=\"form-input-wide\">\n          <div id=\"text_29\" class=\"form-html\">\n            cansado.\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\"> 12. (Yo, trabajar) <\/label>\n        <div id=\"cid_30\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_30\" name=\"q30_12yo\" size=\"20\" maxlength=\"100\" \/>\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            en un banco.\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\"> 13. (Ellos, Levantarse) <\/label>\n        <div id=\"cid_32\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_32\" name=\"q32_13ellos\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_33\">\n        <div id=\"cid_33\" class=\"form-input-wide\">\n          <div id=\"text_33\" class=\"form-html\">\n            a las siete.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_35\">\n        <label class=\"form-label-left\" id=\"label_35\" for=\"input_35\"> 14. (Gustar, a mi) <\/label>\n        <div id=\"cid_35\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_35\" name=\"q35_14gustar\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_36\">\n        <div id=\"cid_36\" class=\"form-input-wide\">\n          <div id=\"text_36\" class=\"form-html\">\n            el verano.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_37\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_37\" class=\"form-header\">\n            Easy future (ir+ a + infinitive)\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_39\">\n        <label class=\"form-label-left\" id=\"label_39\" for=\"input_39\"> 15. Ma\u00f1ana, Yo (comer) <\/label>\n        <div id=\"cid_39\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_39\" name=\"q39_15Manana\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_40\">\n        <div id=\"cid_40\" class=\"form-input-wide\">\n          <div id=\"text_40\" class=\"form-html\">\n            contigo.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_41\">\n        <label class=\"form-label-left\" id=\"label_41\" for=\"input_41\"> 16. La semana pr\u00f3xima, ella (escribir) <\/label>\n        <div id=\"cid_41\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_41\" name=\"q41_16La\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_42\">\n        <div id=\"cid_42\" class=\"form-input-wide\">\n          <div id=\"text_42\" class=\"form-html\">\n            a tu familia.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_44\">\n        <label class=\"form-label-left\" id=\"label_44\" for=\"input_44\"> 17. Ma\u00f1ana, Juan (trabajar) <\/label>\n        <div id=\"cid_44\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_44\" name=\"q44_17Manana\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_43\">\n        <div id=\"cid_43\" class=\"form-input-wide\">\n          <div id=\"text_43\" class=\"form-html\">\n            todo el d\u00eda.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_45\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_45\" class=\"form-header\">\n            Pret\u00e9rito\/Imperfecto\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_46\">\n        <label class=\"form-label-left\" id=\"label_46\" for=\"input_46\"> 18. Manuel (mirar) <\/label>\n        <div id=\"cid_46\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_46\" name=\"q46_18Manuel\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_47\">\n        <div id=\"cid_47\" class=\"form-input-wide\">\n          <div id=\"text_47\" class=\"form-html\">\n            la televisi\u00f3n, ayer todo el d\u00eda.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_48\">\n        <label class=\"form-label-left\" id=\"label_48\" for=\"input_48\"> 19. Ellos (ir) <\/label>\n        <div id=\"cid_48\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_48\" name=\"q48_19Ellos\" size=\"20\" maxlength=\"100\" \/>\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            al estadio ayer.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_51\">\n        <label class=\"form-label-left\" id=\"label_51\" for=\"input_51\"> 20. Yo (conocer) <\/label>\n        <div id=\"cid_51\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_51\" name=\"q51_20Yo\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_50\">\n        <div id=\"cid_50\" class=\"form-input-wide\">\n          <div id=\"text_50\" class=\"form-html\">\n            a Carlos en la fiesta.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_53\">\n        <label class=\"form-label-left\" id=\"label_53\" for=\"input_53\"> 21. Nosotros (tener que estudiar) <\/label>\n        <div id=\"cid_53\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_53\" name=\"q53_21Nosotros\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_52\">\n        <div id=\"cid_52\" class=\"form-input-wide\">\n          <div id=\"text_52\" class=\"form-html\">\n            la historia de Canad\u00e1.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_54\">\n        <label class=\"form-label-left\" id=\"label_54\" for=\"input_54\"> 22. Cuando eran peque\u00f1os, ellos siempre (ir) <\/label>\n        <div id=\"cid_54\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_54\" name=\"q54_22Cuando\" size=\"20\" 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\"> a la escuela, ellos siempre (jugar) <\/label>\n        <div id=\"cid_56\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_56\" name=\"q56_aLa\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_57\">\n        <label class=\"form-label-left\" id=\"label_57\" for=\"input_57\"> f\u00fatbol, ellos nunca (estudia) <\/label>\n        <div id=\"cid_57\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_57\" name=\"q57_futbolEllos\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_58\">\n        <div id=\"cid_58\" class=\"form-input-wide\">\n          <div id=\"text_58\" class=\"form-html\">\n            lo suficiente.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_59\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_59\" class=\"form-header\">\n            Responde\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_61\">\n        <label class=\"form-label-left\" id=\"label_61\" for=\"input_61\"> 23. \u00bfQu\u00e9 tienes que hacer ma\u00f1ana? <\/label>\n        <div id=\"cid_61\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_61\" name=\"q61_23que\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_62\">\n        <label class=\"form-label-left\" id=\"label_62\" for=\"input_62\"> 24. \u00bfQu\u00e9 est\u00e1s leyendo \u00faltimamente? <\/label>\n        <div id=\"cid_62\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_62\" name=\"q62_24que\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_63\">\n        <label class=\"form-label-left\" id=\"label_63\" for=\"input_63\"> 25. \u00bfQu\u00e9 vas a hacer este fin de semana? <\/label>\n        <div id=\"cid_63\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_63\" name=\"q63_25que\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_64\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_64\" class=\"form-header\">\n            Subjuntivo\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_65\">\n        <div id=\"cid_65\" class=\"form-input-wide\">\n          <div id=\"text_65\" class=\"form-html\">\n            Write the following sentences in Spanish.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_67\">\n        <label class=\"form-label-left\" id=\"label_67\" for=\"input_67\"> 26. I want you to come to my office tomorrow. <\/label>\n        <div id=\"cid_67\" class=\"form-input\">\n          <textarea id=\"input_67\" class=\"form-textarea\" name=\"q67_26I\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_68\">\n        <label class=\"form-label-left\" id=\"label_68\" for=\"input_68\"> 27. I need you to talk to her <\/label>\n        <div id=\"cid_68\" class=\"form-input\">\n          <textarea id=\"input_68\" class=\"form-textarea\" name=\"q68_27I\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_69\">\n        <label class=\"form-label-left\" id=\"label_69\" for=\"input_69\"> 28. I wanted you to help me yesterday. <\/label>\n        <div id=\"cid_69\" class=\"form-input\">\n          <textarea id=\"input_69\" class=\"form-textarea\" name=\"q69_28I\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_70\">\n        <label class=\"form-label-left\" id=\"label_70\" for=\"input_70\"> 29. I didn't think they would mind. <\/label>\n        <div id=\"cid_70\" class=\"form-input\">\n          <textarea id=\"input_70\" class=\"form-textarea\" name=\"q70_29I\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_72\">\n        <label class=\"form-label-left\" id=\"label_72\" for=\"input_72\"> 30. If I had time, I would go. <\/label>\n        <div id=\"cid_72\" class=\"form-input\">\n          <textarea id=\"input_72\" class=\"form-textarea\" name=\"q72_30If\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_73\">\n        <label class=\"form-label-left\" id=\"label_73\" for=\"input_73\"> 31. If I had spoken to her, It wouldn't have happened. <\/label>\n        <div id=\"cid_73\" class=\"form-input\">\n          <textarea id=\"input_73\" class=\"form-textarea\" name=\"q73_31If\" cols=\"30\" rows=\"2\"><\/textarea>\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=\"81391807252\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"81391807252-81391807252\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

