/*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 i91981958184 = new FrameBuilder("91981958184", 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<link type=\"text\/css\" rel=\"stylesheet\" href=\"http:\/\/www.jotform.com\/css\/styles\/baby_blue.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:none repeat scroll 0% 0% rgb(215, 233, 243);\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:490px;\n        background:none repeat scroll 0% 0% rgb(215, 233, 243);\n        color:rgb(57, 79, 95) !important;\n        font-family:Tahoma;\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.setCalendar(\"51\");\n      JotForm.setCalendar(\"53\");\n   });\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_91981958184\" id=\"91981958184\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"91981958184\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_12\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_12\" class=\"form-header\">\n            CHANGING SPACES APPLICATION FORM\n          <\/h2>\n        <\/div>\n      <\/li>\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            Please use this form to let us know about the art that you would like to display in a vacant unit in the city centre for the Changing Spaces empty retail units project.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_70\">\n        <div id=\"cid_70\" class=\"form-input-wide\">\n          <div id=\"text_70\" class=\"form-html\">\n            We will do our best to accommodate your ideas, but cannot guarantee that you will get access to your first choice of unit or that any units will be available for definite.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_71\">\n        <div id=\"cid_71\" class=\"form-input-wide\">\n          <div id=\"text_71\" class=\"form-html\">\n            Ideas outside the specified structure are welcomed, please contact Elaine Midgley, Arts Development Manager, Cambridge City Council to discuss possibilities before applying (elaine.midgley@cambridge.gov.uk).\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_115\">\n        <div id=\"cid_115\" class=\"form-input-wide\">\n          <div id=\"text_115\" class=\"form-html\">\n            PLEASE NOTE: This online form works well on both Firefox and Internet Explorer, but we have been experiencing a few problems with Safari.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_57\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_57\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_57\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\n      <li class=\"form-line\" id=\"id_32\">\n        <div id=\"cid_32\" class=\"form-input-wide\">\n          <div id=\"text_32\" class=\"form-html\">\n            ABOUT YOU:\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\"> Name <\/label>\n        <div id=\"cid_0\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" 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\"> Name of Organisation (if applicable) <\/label>\n        <div id=\"cid_1\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_1\" name=\"q1_nameOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_2\">\n        <label class=\"form-label-left\" id=\"label_2\" for=\"input_2\"> E-mail <\/label>\n        <div id=\"cid_2\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_2\" name=\"q2_email\" 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\"> Website (if relevant) <\/label>\n        <div id=\"cid_16\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_16\" name=\"q16_websiteif\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_10\">\n        <label class=\"form-label-left\" id=\"label_10\" for=\"input_10\"> Telephone number <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_10\" name=\"q10_telephoneNumber\" 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\"> Address <\/label>\n        <div id=\"cid_3\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_3\" name=\"q3_address3\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_4\">\n        <label class=\"form-label-left\" id=\"label_4\" for=\"input_4\"> City <\/label>\n        <div id=\"cid_4\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_4\" name=\"q4_city\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_49\">\n        <label class=\"form-label-left\" id=\"label_49\" for=\"input_49\"> Postcode <\/label>\n        <div id=\"cid_49\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_49\" name=\"q49_postcode\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_138\">\n        <label class=\"form-label-left\" id=\"label_138\" for=\"input_138\"> Short biography\/description of organisation (max 100 words). <\/label>\n        <div id=\"cid_138\" class=\"form-input\">\n          <textarea id=\"input_138\" class=\"form-textarea\" name=\"q138_shortBiographydescription138\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_137\">\n        <label class=\"form-label-left\" id=\"label_137\" for=\"input_137\"> If you are an individual artist applying: do you have a degree in art or a related field? <\/label>\n        <div id=\"cid_137\" 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_137_0\" name=\"q137_ifYou\" value=\"yes\" \/>\n              <label for=\"input_137_0\"> yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_137_1\" name=\"q137_ifYou\" value=\"no\" \/>\n              <label for=\"input_137_1\"> no <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_133\">\n        <label class=\"form-label-left\" id=\"label_133\" for=\"input_133\"> How many times have you exhibited your work? <\/label>\n        <div id=\"cid_133\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_133\" name=\"q133_howMany\">\n            <option>  <\/option>\n            <option value=\"it is my first time\"> it is my first time <\/option>\n            <option value=\" up to 3 times\"> up to 3 times <\/option>\n            <option value=\" more than 3 times\"> more than 3 times <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_135\">\n        <label class=\"form-label-left\" id=\"label_135\" for=\"input_135\"> Have you exhibited in Cambridge before? <\/label>\n        <div id=\"cid_135\" 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_135_0\" name=\"q135_haveYou\" value=\"yes\" \/>\n              <label for=\"input_135_0\"> yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_135_1\" name=\"q135_haveYou\" value=\"no\" \/>\n              <label for=\"input_135_1\"> no <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_20\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_20\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_20\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\n      <li id=\"cid_42\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_42\" class=\"form-header\">\n            Project Overview:\n          <\/h2>\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            The project begun on 6th July 2009. We are exhibiting artwork in empty shop windows across the city.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_72\">\n        <div id=\"cid_72\" class=\"form-input-wide\">\n          <div id=\"text_72\" class=\"form-html\">\n            The units will be licensed to the Council who will then act as a co-ordinator for exhibitions using an agreement with the artist(s).\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_73\">\n        <div id=\"cid_73\" class=\"form-input-wide\">\n          <div id=\"text_73\" class=\"form-html\">\n            <p>\n              We would like the artwork to be changed every 3-4 weeks, to create a continually changing display of artwork.\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_75\">\n        <div id=\"cid_75\" class=\"form-input-wide\">\n          <div id=\"text_75\" class=\"form-html\">\n            Any individual or group can apply to display artwork in the windows only, using up to 2m from the window.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_77\">\n        <div id=\"cid_77\" class=\"form-input-wide\">\n          <div id=\"text_77\" class=\"form-html\">\n            We are focussing on units in the city centre and Grafton Centre only at this stage.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_78\">\n        <div id=\"cid_78\" class=\"form-input-wide\">\n          <div id=\"text_78\" class=\"form-html\">\n            Feel free to be inventive with concepts for the curation of your work within the windows. We look forward to hearing your ideas.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_112\">\n        <div id=\"cid_112\" class=\"form-input-wide\">\n          <div id=\"text_112\" class=\"form-html\">\n            PLEASE NOTE: We will contact you initially to discuss your application and then again once a property has been negotiated. Until we have completed negotiations with the property agent there is no guarantee on your space and this is why we will contact you once these negotiations are complete.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_48\">\n        <div id=\"cid_48\" class=\"form-input-wide\">\n          <div id=\"text_48\" class=\"form-html\">\n            NOW FOR THE EXCITING PART...\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_41\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_41\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_41\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\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            YOUR ARTWORK:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <label class=\"form-label-left\" id=\"label_17\" for=\"input_17\"> How are you applying? <\/label>\n        <div id=\"cid_17\" 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_17_0\" name=\"q17_howAre[]\" value=\"Artist Collective or Group - 1 unit for a prolonged period with changing fortnightly exhibitions of those within your group.\" \/>\n              <label for=\"input_17_0\"> Artist Collective or Group - 1 unit for a prolonged period with changing fortnightly exhibitions of those within your group. <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_17_1\" name=\"q17_howAre[]\" value=\"Individual Artist - a fortnight exhibition slot in a particular unit.\" \/>\n              <label for=\"input_17_1\"> Individual Artist - a fortnight exhibition slot in a particular unit. <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\"> Do you work for a organisation which is a registered charity? <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_19\" name=\"q19_doYou19\">\n            <option>  <\/option>\n            <option value=\"Yes\"> Yes <\/option>\n            <option value=\"No\"> No <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_22\">\n        <label class=\"form-label-left\" id=\"label_22\" for=\"input_22\"> Brief Description of your exhibition idea (200 max) <\/label>\n        <div id=\"cid_22\" class=\"form-input\">\n          <textarea id=\"input_22\" class=\"form-textarea\" name=\"q22_briefDescription22\" cols=\"30\" rows=\"2\"><\/textarea>\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            <p>\n              Please submit max 3 images (max. 5MB per image) of the work that you propose to exhibit, or similar work if applicable. the files have to be named as followed:<span style=\"color: #ff0000;\">YOUR.NAME.x.jpg<\/span>\n              (=with your.name obviously replaced by your own name and the x being replaced by the number of the picture - 1,2,3)<span style=\"color: #ff0000;\">We will not accept images with different file names and will therefore not process your application!<\/span>\n            <\/p>\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\"> Image One <\/label>\n        <div id=\"cid_35\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_35\" name=\"q35_imageOne\" file-accept=\"doc, xls, jpg, jpeg, gif, png, mp3, mpeg\" file-maxsize=\"5000\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_37\">\n        <label class=\"form-label-left\" id=\"label_37\" for=\"input_37\"> Image Two <\/label>\n        <div id=\"cid_37\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_37\" name=\"q37_imageTwo37\" file-accept=\"doc, xls, jpg, jpeg, gif, png, mp3, mpeg\" file-maxsize=\"5000\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_130\">\n        <label class=\"form-label-left\" id=\"label_130\" for=\"input_130\"> Image Three <\/label>\n        <div id=\"cid_130\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_130\" name=\"q130_imageThree\" file-accept=\"pdf, doc, docx, xls, csv, txt, rtf, html, zip, mp3, wma, mpg, flv, avi, jpg, jpeg, png, gif\" file-maxsize=\"500\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_25\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_25\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_25\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\n      <li class=\"form-line\" id=\"id_34\">\n        <div id=\"cid_34\" class=\"form-input-wide\">\n          <div id=\"text_34\" class=\"form-html\">\n            PRACTICALITIES:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <label class=\"form-label-left\" id=\"label_27\" for=\"input_27\"> What is the size of your work? <\/label>\n        <div id=\"cid_27\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_27\" name=\"q27_whatIs\">\n            <option>  <\/option>\n            <option value=\"Small - up to 50x70cm\"> Small - up to 50x70cm <\/option>\n            <option value=\"Medium - up to 100x140\"> Medium - up to 100x140 <\/option>\n            <option value=\"Large - up to 150x200 \"> Large - up to 150x200 <\/option>\n            <option value=\"Extralarge - anything bigger than above\"> Extralarge - anything bigger than above <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_29\">\n        <label class=\"form-label-left\" id=\"label_29\" for=\"input_29\"> Can you provide your own display facilities (e.g. boards, spotlights, extension leads, timer)? <\/label>\n        <div id=\"cid_29\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_29\" name=\"q29_canYou\">\n            <option>  <\/option>\n            <option value=\"Yes\"> Yes <\/option>\n            <option value=\"No\"> No <\/option>\n            <option value=\"Maybe\"> Maybe <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_136\">\n        <label class=\"form-label-left\" id=\"label_136\" for=\"input_136\"> Do you have public liability insurance? If not, you will have to get one, otherwise you will not be able to exhibit with Changing Spaces. <\/label>\n        <div id=\"cid_136\" 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_136_0\" name=\"q136_doYou136\" value=\"yes\" \/>\n              <label for=\"input_136_0\"> yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_136_1\" name=\"q136_doYou136\" value=\"no\" \/>\n              <label for=\"input_136_1\"> no <\/label><\/span><span class=\"clearfix\"><\/span>\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\"> When are you able to exhibit from? <\/label>\n        <div id=\"cid_51\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_51\" name=\"q51_whenAre51[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"09\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_51\" id=\"sublabel_day\"> Tag <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_51\" name=\"q51_whenAre51[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_51\" id=\"sublabel_month\"> Monat <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_51\" name=\"q51_whenAre51[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_51\" id=\"sublabel_year\"> Jahr <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_51_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_51_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_53\">\n        <label class=\"form-label-left\" id=\"label_53\" for=\"input_53\"> When are you able to exhibit until? <\/label>\n        <div id=\"cid_53\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_53\" name=\"q53_whenAre53[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"09\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_53\" id=\"sublabel_day\"> Tag <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_53\" name=\"q53_whenAre53[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_53\" id=\"sublabel_month\"> Monat <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_53\" name=\"q53_whenAre53[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_53\" id=\"sublabel_year\"> Jahr <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_53_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_53_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_56\">\n        <div id=\"cid_56\" class=\"form-input-wide\">\n          <div id=\"text_56\" class=\"form-html\">\n            (Please note, these dates can of course be changed later as this is just an initial application!)\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_60\">\n        <label class=\"form-label-left\" id=\"label_60\" for=\"input_60\"> How much notice would you need to set up your exhibition? <\/label>\n        <div id=\"cid_60\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_60\" name=\"q60_howMuch\">\n            <option>  <\/option>\n            <option value=\"I can set up immediately\"> I can set up immediately <\/option>\n            <option value=\"1 week\"> 1 week <\/option>\n            <option value=\"2 weeks\"> 2 weeks <\/option>\n            <option value=\"4 weeks\"> 4 weeks <\/option>\n            <option value=\"6 weeks\"> 6 weeks <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li id=\"cid_58\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_58\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_58\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\n      <li class=\"form-line\" id=\"id_63\">\n        <div id=\"cid_63\" class=\"form-input-wide\">\n          <div id=\"text_63\" class=\"form-html\">\n            <p>\n              Terms and Conditions:<span style=\"color: #ff0000;\"><br \/>\n                Really important, please make sure you read them thoroughly!<\/span>\n            <\/p>\n          <\/div>\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            All arts organisations displaying work will need to sign a formal agreement with the Council to whom the retail unit will have been licensed. The Terms of this Agreement are summarised below:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_79\">\n        <div id=\"cid_79\" class=\"form-input-wide\">\n          <div id=\"text_79\" class=\"form-html\">\n            The Project:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_82\">\n        <div id=\"cid_82\" class=\"form-input-wide\">\n          <div id=\"text_82\" class=\"form-html\">\n            <p>\n              The project organises exhibitions of 3-4 weeks for each artist.\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_81\">\n        <div id=\"cid_81\" class=\"form-input-wide\">\n          <div id=\"text_81\" class=\"form-html\">\n            <p>\n              Each collective\/organisation must ensure that artwork will be available for the full period they are provided with and ensure that the exhibition will be changed every 3 weeks.\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_80\">\n        <div id=\"cid_80\" class=\"form-input-wide\">\n          <div id=\"text_80\" class=\"form-html\">\n            The Artwork:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_87\">\n        <div id=\"cid_87\" class=\"form-input-wide\">\n          <div id=\"text_87\" class=\"form-html\">\n            The Council will act as a co-coordinator and will not assess applications with any taste judgment.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_83\">\n        <div id=\"cid_83\" class=\"form-input-wide\">\n          <div id=\"text_83\" class=\"form-html\">\n            Artwork must be of a universal content and must not be considered offensive or include graphic nudity, weaponry, extreme violence, drug references or be of a political nature (in the Council\u2019s sole discretion).\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_85\">\n        <div id=\"cid_85\" class=\"form-input-wide\">\n          <div id=\"text_85\" class=\"form-html\">\n            The security & condition of the artwork will be the responsibility of the artist. The Council will accept no liability for the damage or theft of works.\n          <\/div>\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            The artist will be expected to provide or procure their own display equipment (boards, lights, extension leads, timer) which must be temporary (no changes, fixtures or damage can be incurred to the retail unit itself).\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_86\">\n        <div id=\"cid_86\" class=\"form-input-wide\">\n          <div id=\"text_86\" class=\"form-html\">\n            <p>\n              The artist\/group must provide proof of public liability insurance up to the value of &pound;5,000,000. (This can be obtained affordably from https:\/\/www.a-n.co.uk\/join_in\/article\/472193)\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_97\">\n        <div id=\"cid_97\" class=\"form-input-wide\">\n          <div id=\"text_97\" class=\"form-html\">\n            The artist will be expected to curate their own display, although the Council will be required to approve the final display.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_96\">\n        <div id=\"cid_96\" class=\"form-input-wide\">\n          <div id=\"text_96\" class=\"form-html\">\n            Window artwork must not be set back from the window by more than 2m.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_95\">\n        <div id=\"cid_95\" class=\"form-input-wide\">\n          <div id=\"text_95\" class=\"form-html\">\n            Artwork labels need to be provided by the artist.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_94\">\n        <div id=\"cid_94\" class=\"form-input-wide\">\n          <div id=\"text_94\" class=\"form-html\">\n            Prices of artwork should not be displayed within the unit. Contact details of the artist can be included and can be placed on the Changing Spaces website.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_93\">\n        <div id=\"cid_93\" class=\"form-input-wide\">\n          <div id=\"text_93\" class=\"form-html\">\n            Any marketing & publicity produced by the artist or collective\/organisation for this project must display the logos of Changing Spaces, Cambridge City Council and Love Cambridge.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_91\">\n        <div id=\"cid_91\" class=\"form-input-wide\">\n          <div id=\"text_91\" class=\"form-html\">\n            The Council reserves the right to alter or change the exhibition at any time at the request of the property agent.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_89\">\n        <div id=\"cid_89\" class=\"form-input-wide\">\n          <div id=\"text_89\" class=\"form-html\">\n            The artist\u2019s health & safety will be the responsibility of the artist.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_88\">\n        <div id=\"cid_88\" class=\"form-input-wide\">\n          <div id=\"text_88\" class=\"form-html\">\n            No utilities or facilities will be made available on site except for electricity. An electricity fee, if lighting is required, will be charged to the artist but will probably not exceed more than \u00a310-30 per week depending on size and usage.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_90\">\n        <div id=\"cid_90\" class=\"form-input-wide\">\n          <div id=\"text_90\" class=\"form-html\">\n            The Retail Unit:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_102\">\n        <div id=\"cid_102\" class=\"form-input-wide\">\n          <div id=\"text_102\" class=\"form-html\">\n            The Council will arrange access to the site and a Council representative must be present at the hanging of artwork. Access will be for one to three days at the start and end of each two week period, the site will be locked at all other times.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_101\">\n        <div id=\"cid_101\" class=\"form-input-wide\">\n          <div id=\"text_101\" class=\"form-html\">\n            The Council will allocate units at its sole discretion.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_100\">\n        <div id=\"cid_100\" class=\"form-input-wide\">\n          <div id=\"text_100\" class=\"form-html\">\n            The Council will be entitled to terminate the agreement at any time by giving 1 week\u2019s notice to the artist.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_98\">\n        <div id=\"cid_98\" class=\"form-input-wide\">\n          <div id=\"text_98\" class=\"form-html\">\n            Costs:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_99\">\n        <div id=\"cid_99\" class=\"form-input-wide\">\n          <div id=\"text_99\" class=\"form-html\">\n            There is no allocated budget for this project.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_108\">\n        <div id=\"cid_108\" class=\"form-input-wide\">\n          <div id=\"text_108\" class=\"form-html\">\n            The Council is working on a number of potential fundraising and sponsorship opportunities. If you are interested in being involved in this aspect of the project please do contact us.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_104\">\n        <div id=\"cid_104\" class=\"form-input-wide\">\n          <div id=\"text_104\" class=\"form-html\">\n            We have secured a design for the project 'brand' known as Changing Spaces, courtesy of The District. They have designed a project logo which will act as a signifier for the scheme.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_103\">\n        <div id=\"cid_103\" class=\"form-input-wide\">\n          <div id=\"text_103\" class=\"form-html\">\n            Artists will need to factor in any costs to you of installing the artworks and any additional marketing costs they choose to implement.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_107\">\n        <div id=\"cid_107\" class=\"form-input-wide\">\n          <div id=\"text_107\" class=\"form-html\">\n            Changing Spaces has a thorough marketing schedule which includes all units; however this will be based in publications, television and radio rather than printed publicity.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_106\">\n        <div id=\"cid_106\" class=\"form-input-wide\">\n          <div id=\"text_106\" class=\"form-html\">\n            Please be aware that The Council will have no control over the quality of the unit that you get or its state of repair.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_110\">\n        <div id=\"cid_110\" class=\"form-input-wide\">\n          <div id=\"text_110\" class=\"form-html\">\n            <p>\n              Whilst the units are being provided free of charge, if you wish to light your display a small electricity charge might be negotiated (approx &pound;5 pw).\n            <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_127\">\n        <label class=\"form-label-left\" id=\"label_127\" for=\"input_127\">\n          I have read the terms and condition agree to them.<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_127\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_127_0\" name=\"q127_iHave127[]\" value=\"Yes\" \/>\n              <label for=\"input_127_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_122\">\n        <div id=\"cid_122\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_122\" 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=\"91981958184\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"91981958184-91981958184\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

