var qsProxy = {};
function FrameBuilder(formId,appendTo,initialHeight,iframeCode,title,embedStyleJSON,isSmartEmbedEnabled){this.formId=formId;this.initialHeight=initialHeight;this.iframeCode=iframeCode;this.frame=null;this.timeInterval=200;this.appendTo=appendTo||false;this.formSubmitted=0;this.frameMinWidth='100%';this.defaultHeight='';this.isSmartEmbedEnabled=isSmartEmbedEnabled===1;this.init=function(){this.embedURLHash=this.getMD5(window.location.href);if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash]&&embedStyleJSON[this.embedURLHash]['embedWidth'])){this.frameMinWidth=embedStyleJSON[this.embedURLHash]['embedWidth']+'px';}
if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash])){if(embedStyleJSON[this.embedURLHash]['inlineStyle']&&embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']){this.defaultHeight='data-frameHeight="'+embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']+'"';}}
this.createFrame();this.addFrameContent(this.iframeCode);};this.createFrame=function(){var tmp_is_ie=!!window.ActiveXObject;this.iframeDomId=document.getElementById(this.formId)?this.formId+'_'+new Date().getTime():this.formId;var htmlCode="<"+"iframe title=\""+title.replace(/[\\"']/g,'\\$&').replace(/&amp;/g,'&')+"\" src=\"\" allowtransparency=\"true\" name=\""+this.formId+"\" id=\""+this.iframeDomId+"\" style=\"width: 10px; min-width:"+this.frameMinWidth+"; display: block; overflow: hidden; height:"+this.initialHeight+"px; border: none;\" scrolling=\"no\""+this.defaultHeight+"></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);}
this.frame=document.getElementById(this.iframeDomId);if(tmp_is_ie===true){try{var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write("");}
catch(err){this.frame.src="javascript:void((function(){document.open();document.domain=\'"+this.getBaseDomain()+"\';document.close();})())";}}
this.addEvent(this.frame,'load',this.bindMethod(this.setTimer,this));var self=this;if(window.chrome!==undefined){this.frame.onload=function(){try{var doc=this.contentWindow.document;var _jotform=this.contentWindow.JotForm;if(doc!==undefined){var form=doc.getElementById(""+self.iframeDomId);self.addEvent(form,"submit",function(){if(_jotform.validateAll()){self.formSubmitted=1;}});}}catch(e){}}}};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){if(window.location.search&&window.location.search.indexOf('disableSmartEmbed')>-1){string=string.replace(new RegExp('smartEmbed=1(?:&amp;|&)'),'');string=string.replace(new RegExp('isSmartEmbed'),'');}else if(this.isSmartEmbedEnabled){var cssLink='stylebuilder/'+this.formId+'.css';var embedUrl='&amp;embedUrl='+window.location.href;var cssPlace=string.indexOf(cssLink);if(cssPlace>-1){var positionLastRequestElement=string.indexOf('\"/>',cssPlace);if(positionLastRequestElement>-1){string=string.substr(0,positionLastRequestElement)+embedUrl+string.substr(positionLastRequestElement);string=string.replace(cssLink,'stylebuilder/'+this.formId+'/'+this.embedURLHash+'.css');}}}
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);');if(string.match('#sublabel_litemode')){string=string.replace('class="form-all"','class="form-all" style="margin-top:0;"');}
var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write(string);setTimeout(function(){doc.close();try{if('JotFormFrameLoaded'in window){JotFormFrameLoaded();}}catch(e){console.log("error on frame loading",e);}},200);};this.setTimer=function(){var self=this;this.interval=setTimeout(function(){self.changeHeight();},this.timeInterval);};this.getBaseDomain=function(){var thn=window.location.hostname;var cc=0;var buff="";for(var i=0;i<thn.length;i++){var chr=thn.charAt(i);if(chr=="."){cc++;}
if(cc==0){buff+=chr;}}
if(cc==2){thn=thn.replace(buff+".","");}
return thn;}
this.changeHeight=function(){var actualHeight=this.getBodyHeight();var currentHeight=this.getViewPortHeight();if(actualHeight===undefined){this.frame.style.height=this.frameHeight;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.frameHeight=0;this.getBodyHeight=function(){if(this.formSubmitted===1){return;}
var height;var scrollHeight;var offsetHeight;try{if(this.frame.contentWindow.document.height){height=this.frame.contentWindow.document.height;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){var isChrome=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);if(this.frame.contentWindow.document.body.scrollHeight){height=scrollHeight=this.frame.contentWindow.document.body.scrollHeight;}
if(isChrome){height=scrollHeight=this.frame.contentWindow.document.height;}
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){}
this.frameHeight=height;return height;};this.getViewPortHeight=function(){if(this.formSubmitted===1){return;}
var height=0;try{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.getMD5=function(s){function L(k,d){return(k<<d)|(k>>>(32-d))}function K(G,k){var I,d,F,H,x;F=(G&2147483648);H=(k&2147483648);I=(G&1073741824);d=(k&1073741824);x=(G&1073741823)+(k&1073741823);if(I&d){return(x^2147483648^F^H)}if(I|d){if(x&1073741824){return(x^3221225472^F^H)}else{return(x^1073741824^F^H)}}else{return(x^F^H)}}function r(d,F,k){return(d&F)|((~d)&k)}function q(d,F,k){return(d&k)|(F&(~k))}function p(d,F,k){return(d^F^k)}function n(d,F,k){return(F^(d|(~k)))}function u(G,F,aa,Z,k,H,I){G=K(G,K(K(r(F,aa,Z),k),I));return K(L(G,H),F)}function f(G,F,aa,Z,k,H,I){G=K(G,K(K(q(F,aa,Z),k),I));return K(L(G,H),F)}function D(G,F,aa,Z,k,H,I){G=K(G,K(K(p(F,aa,Z),k),I));return K(L(G,H),F)}function t(G,F,aa,Z,k,H,I){G=K(G,K(K(n(F,aa,Z),k),I));return K(L(G,H),F)}function e(G){var Z;var F=G.length;var x=F+8;var k=(x-(x%64))/64;var I=(k+1)*16;var aa=Array(I-1);var d=0;var H=0;while(H<F){Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=(aa[Z]|(G.charCodeAt(H)<<d));H++}Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=aa[Z]|(128<<d);aa[I-2]=F<<3;aa[I-1]=F>>>29;return aa}function B(x){var k="",F="",G,d;for(d=0;d<=3;d++){G=(x>>>(d*8))&255;F="0"+G.toString(16);k=k+F.substr(F.length-2,2)}return k}function J(k){k=k.replace(/rn/g,"n");var d="";for(var F=0;F<k.length;F++){var x=k.charCodeAt(F);if(x<128){d+=String.fromCharCode(x)}else{if((x>127)&&(x<2048)){d+=String.fromCharCode((x>>6)|192);d+=String.fromCharCode((x&63)|128)}else{d+=String.fromCharCode((x>>12)|224);d+=String.fromCharCode(((x>>6)&63)|128);d+=String.fromCharCode((x&63)|128)}}}return d}var C=Array();var P,h,E,v,g,Y,X,W,V;var S=7,Q=12,N=17,M=22;var A=5,z=9,y=14,w=20;var o=4,m=11,l=16,j=23;var U=6,T=10,R=15,O=21;s=J(s);C=e(s);Y=1732584193;X=4023233417;W=2562383102;V=271733878;for(P=0;P<C.length;P+=16){h=Y;E=X;v=W;g=V;Y=u(Y,X,W,V,C[P+0],S,3614090360);V=u(V,Y,X,W,C[P+1],Q,3905402710);W=u(W,V,Y,X,C[P+2],N,606105819);X=u(X,W,V,Y,C[P+3],M,3250441966);Y=u(Y,X,W,V,C[P+4],S,4118548399);V=u(V,Y,X,W,C[P+5],Q,1200080426);W=u(W,V,Y,X,C[P+6],N,2821735955);X=u(X,W,V,Y,C[P+7],M,4249261313);Y=u(Y,X,W,V,C[P+8],S,1770035416);V=u(V,Y,X,W,C[P+9],Q,2336552879);W=u(W,V,Y,X,C[P+10],N,4294925233);X=u(X,W,V,Y,C[P+11],M,2304563134);Y=u(Y,X,W,V,C[P+12],S,1804603682);V=u(V,Y,X,W,C[P+13],Q,4254626195);W=u(W,V,Y,X,C[P+14],N,2792965006);X=u(X,W,V,Y,C[P+15],M,1236535329);Y=f(Y,X,W,V,C[P+1],A,4129170786);V=f(V,Y,X,W,C[P+6],z,3225465664);W=f(W,V,Y,X,C[P+11],y,643717713);X=f(X,W,V,Y,C[P+0],w,3921069994);Y=f(Y,X,W,V,C[P+5],A,3593408605);V=f(V,Y,X,W,C[P+10],z,38016083);W=f(W,V,Y,X,C[P+15],y,3634488961);X=f(X,W,V,Y,C[P+4],w,3889429448);Y=f(Y,X,W,V,C[P+9],A,568446438);V=f(V,Y,X,W,C[P+14],z,3275163606);W=f(W,V,Y,X,C[P+3],y,4107603335);X=f(X,W,V,Y,C[P+8],w,1163531501);Y=f(Y,X,W,V,C[P+13],A,2850285829);V=f(V,Y,X,W,C[P+2],z,4243563512);W=f(W,V,Y,X,C[P+7],y,1735328473);X=f(X,W,V,Y,C[P+12],w,2368359562);Y=D(Y,X,W,V,C[P+5],o,4294588738);V=D(V,Y,X,W,C[P+8],m,2272392833);W=D(W,V,Y,X,C[P+11],l,1839030562);X=D(X,W,V,Y,C[P+14],j,4259657740);Y=D(Y,X,W,V,C[P+1],o,2763975236);V=D(V,Y,X,W,C[P+4],m,1272893353);W=D(W,V,Y,X,C[P+7],l,4139469664);X=D(X,W,V,Y,C[P+10],j,3200236656);Y=D(Y,X,W,V,C[P+13],o,681279174);V=D(V,Y,X,W,C[P+0],m,3936430074);W=D(W,V,Y,X,C[P+3],l,3572445317);X=D(X,W,V,Y,C[P+6],j,76029189);Y=D(Y,X,W,V,C[P+9],o,3654602809);V=D(V,Y,X,W,C[P+12],m,3873151461);W=D(W,V,Y,X,C[P+15],l,530742520);X=D(X,W,V,Y,C[P+2],j,3299628645);Y=t(Y,X,W,V,C[P+0],U,4096336452);V=t(V,Y,X,W,C[P+7],T,1126891415);W=t(W,V,Y,X,C[P+14],R,2878612391);X=t(X,W,V,Y,C[P+5],O,4237533241);Y=t(Y,X,W,V,C[P+12],U,1700485571);V=t(V,Y,X,W,C[P+3],T,2399980690);W=t(W,V,Y,X,C[P+10],R,4293915773);X=t(X,W,V,Y,C[P+1],O,2240044497);Y=t(Y,X,W,V,C[P+8],U,1873313359);V=t(V,Y,X,W,C[P+15],T,4264355552);W=t(W,V,Y,X,C[P+6],R,2734768916);X=t(X,W,V,Y,C[P+13],O,1309151649);Y=t(Y,X,W,V,C[P+4],U,4149444226);V=t(V,Y,X,W,C[P+11],T,3174756917);W=t(W,V,Y,X,C[P+2],R,718787259);X=t(X,W,V,Y,C[P+9],O,3951481745);Y=K(Y,h);X=K(X,E);W=K(W,v);V=K(V,g)}var i=B(Y)+B(X)+B(W)+B(V);return i.toLowerCase()};this.init();}
FrameBuilder.get=qsProxy||[];var i73046761570861=new FrameBuilder("73046761570861",false,"","<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html class=\"supernova\"><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F73046761570861\" title=\"oEmbed Form\"><link rel=\"alternate\" type=\"text\/xml+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=xml&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F73046761570861\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"PSNZ Judge Assessment Questionnaire\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/73046761570861\" >\n<meta property=\"og:description\" content=\"Please click the link to complete this form.\">\n<link rel=\"shortcut icon\" href=\"https:\/\/cdn.jotfor.ms\/favicon.ico\">\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>PSNZ Judge Assessment Questionnaire<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.4218\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.4218\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/nova.css?3.3.4218\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/themes\/CSS\/566a91c2977cdfcd478b4567.css?\"\/>\n<style type=\"text\/css\">\n    .form-label-left{\n        width:800px;\n    }\n    .form-line{\n        padding-top:0px;\n        padding-bottom:0px;\n    }\n    .form-label-right{\n        width:800px;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:#fff;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:900px;\n        color:#555 !important;\n        font-family:\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", Verdana, sans-serif;\n        font-size:14px;\n    }\n<\/style>\n\n<style type=\"text\/css\" id=\"form-designer-style\">\n    \/* Injected CSS Code *\/\n.form-all:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.form-all {\n  font-family: \"Lucida Grande\", sans-serif;\n}\n.form-all {\n  width: 800px;\n}\n.form-label-left,\n.form-label-right {\n  width: 280px;\n}\n.form-label {\n  white-space: normal;\n}\n.form-label.form-label-auto {\n  display: block;\n  float: none;\n  text-align: left;\n}\n.form-label-left {\n  display: inline-block;\n  white-space: normal;\n  float: left;\n  text-align: left;\n}\n.form-label-right {\n  display: inline-block;\n  white-space: normal;\n  float: left;\n  text-align: right;\n}\n.form-label-top {\n  white-space: normal;\n  display: block;\n  float: none;\n  text-align: left;\n}\n.form-radio-item label:before {\n  top: 0;\n}\n.form-all {\n  font-size: 14px;\n}\n.form-label {\n  font-weight: bold;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  font-weight: normal;\n}\n.supernova {\n  background-color: #ffffff;\n}\n.supernova body {\n  background-color: transparent;\n}\n\/*\n@width30: (unit(@formWidth, px) + 60px);\n@width60: (unit(@formWidth, px)+ 120px);\n@width90: (unit(@formWidth, px)+ 180px);\n*\/\n\/* | *\/\n@media screen and (min-width: 480px) {\n  .supernova .form-all {\n    border: 1px solid #e6e6e6;\n    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (max-width: 480px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 767px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 799px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 768px) {\n  .jotform-form {\n    padding: 60px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (max-width: 799px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n.supernova .form-all,\n.form-all {\n  background-color: #ffffff;\n  border: 1px solid transparent;\n}\n.form-header-group {\n  border-color: #e6e6e6;\n}\n.form-matrix-table tr {\n  border-color: #e6e6e6;\n}\n.form-matrix-table tr:nth-child(2n) {\n  background-color: #f2f2f2;\n}\n.form-all {\n  color: #555555;\n}\n.form-header-group .form-header {\n  color: #555555;\n}\n.form-header-group .form-subHeader {\n  color: #6f6f6f;\n}\n.form-sub-label {\n  color: #6f6f6f;\n}\n.form-label-top,\n.form-label-left,\n.form-label-right,\n.form-html {\n  color: #555555;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  color: #6f6f6f;\n}\n.form-line.form-line-active {\n  -webkit-transition-property: all;\n  -moz-transition-property: all;\n  -ms-transition-property: all;\n  -o-transition-property: all;\n  transition-property: all;\n  -webkit-transition-duration: 0.3s;\n  -moz-transition-duration: 0.3s;\n  -ms-transition-duration: 0.3s;\n  -o-transition-duration: 0.3s;\n  transition-duration: 0.3s;\n  -webkit-transition-timing-function: ease;\n  -moz-transition-timing-function: ease;\n  -ms-transition-timing-function: ease;\n  -o-transition-timing-function: ease;\n  transition-timing-function: ease;\n  background-color: #ffffe0;\n}\n\/* omer *\/\n.form-radio-item,\n.form-checkbox-item {\n  padding-bottom: 0px !important;\n}\n.form-radio-item:last-child,\n.form-checkbox-item:last-child {\n  padding-bottom: 0;\n}\n\/* omer *\/\n.form-single-column .form-checkbox-item,\n.form-single-column .form-radio-item {\n  width: 100%;\n}\n.supernova {\n  height: 100%;\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n  background-repeat: repeat;\n}\n.supernova {\n  background-image: none;\n}\n#stage {\n  background-image: none;\n}\n\/* | *\/\n.form-all {\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n  background-repeat: repeat;\n}\n.form-header-group {\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n}\n.form-line {\n  margin-top: 0px;\n  margin-bottom: 0px;\n}\n.form-line {\n  padding: 1px 28px;\n}\n.form-all .qq-upload-button,\n.form-all .form-submit-button,\n.form-all .form-submit-reset,\n.form-all .form-submit-print {\n  font-size: 1em;\n  padding: 9px 15px;\n  font-family: \"Lucida Grande\", sans-serif;\n  font-size: 14px;\n  font-weight: normal;\n}\n.form-all .form-pagebreak-back,\n.form-all .form-pagebreak-next {\n  font-size: 1em;\n  padding: 9px 15px;\n  font-family: \"Lucida Grande\", sans-serif;\n  font-size: 14px;\n  font-weight: normal;\n}\n\/*\n& when ( @buttonFontType = google ) {\n\t@import (css) \"@{buttonFontLink}\";\n}\n*\/\nh2.form-header {\n  line-height: 1.618em;\n  font-size: 1.714em;\n}\nh2 ~ .form-subHeader {\n  line-height: 1.5em;\n  font-size: 1.071em;\n}\n.form-header-group {\n  text-align: left;\n}\n\/*.form-dropdown,\n.form-radio-item,\n.form-checkbox-item,\n.form-radio-other-input,\n.form-checkbox-other-input,*\/\n.form-captcha input,\n.form-spinner input,\n.form-error-message {\n  padding: 4px 3px 2px 3px;\n}\n.form-header-group {\n  font-family: \"Lucida Grande\", sans-serif;\n}\n.form-section {\n  padding: 0px 0px 0px 0px;\n}\n.form-header-group {\n  margin: 12px 36px 12px 36px;\n}\n.form-header-group {\n  padding: 24px 0px 24px 0px;\n}\n.form-textbox,\n.form-textarea {\n  padding: 4px 3px 2px 3px;\n}\n[data-type=\"control_dropdown\"] .form-input,\n[data-type=\"control_dropdown\"] .form-input-wide {\n  width: 150px;\n}\n.form-label {\n  font-family: \"Lucida Grande\", sans-serif;\n}\nli[data-type=\"control_image\"] div {\n  text-align: left;\n}\nli[data-type=\"control_image\"] img {\n  border: none;\n  border-width: 0px !important;\n  border-style: solid !important;\n  border-color: false !important;\n}\n.form-line-column {\n  width: auto;\n}\n.form-line-error {\n  overflow: hidden;\n  -webkit-transition-property: none;\n  -moz-transition-property: none;\n  -ms-transition-property: none;\n  -o-transition-property: none;\n  transition-property: none;\n  -webkit-transition-duration: 0.3s;\n  -moz-transition-duration: 0.3s;\n  -ms-transition-duration: 0.3s;\n  -o-transition-duration: 0.3s;\n  transition-duration: 0.3s;\n  -webkit-transition-timing-function: ease;\n  -moz-transition-timing-function: ease;\n  -ms-transition-timing-function: ease;\n  -o-transition-timing-function: ease;\n  transition-timing-function: ease;\n  background-color: #fff4f4;\n}\n.form-line-error .form-error-message {\n  background-color: #ff3200;\n  clear: both;\n  float: none;\n}\n.form-line-error .form-error-message .form-error-arrow {\n  border-bottom-color: #ff3200;\n}\n.form-line-error input:not(#coupon-input),\n.form-line-error textarea,\n.form-line-error .form-validation-error {\n  border: 1px solid #ff3200;\n  -webkit-box-shadow: 0 0 3px #ff3200;\n  -moz-box-shadow: 0 0 3px #ff3200;\n  box-shadow: 0 0 3px #ff3200;\n}\n.ie-8 .form-all {\n  margin-top: auto;\n  margin-top: initial;\n}\n.ie-8 .form-all:before {\n  display: none;\n}\n[data-type=\"control_clear\"] {\n  display: none;\n}\n\/* | *\/\n@media screen and (max-width: 480px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {\n  .testOne {\n    letter-spacing: 0;\n  }\n  .form-all {\n    border: 0;\n    max-width: initial;\n  }\n  .form-sub-label-container {\n    width: 100%;\n    margin: 0;\n    margin-right: 0;\n    float: left;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  span.form-sub-label-container + span.form-sub-label-container {\n    margin-right: 0;\n  }\n  .form-sub-label {\n    white-space: normal;\n  }\n  .form-address-table td,\n  .form-address-table th {\n    padding: 0 1px 10px;\n  }\n  .form-submit-button,\n  .form-submit-print,\n  .form-submit-reset {\n    width: 100%;\n    margin-left: 0!important;\n  }\n  div[id*=at_] {\n    font-size: 14px;\n    font-weight: 700;\n    height: 8px;\n    margin-top: 6px;\n  }\n  .showAutoCalendar {\n    width: 20px;\n  }\n  img.form-image {\n    max-width: 100%;\n    height: auto;\n  }\n  .form-matrix-row-headers {\n    width: 100%;\n    word-break: break-all;\n    min-width: 40px;\n  }\n  .form-collapse-table,\n  .form-header-group {\n    margin: 0;\n  }\n  .form-collapse-table {\n    height: 100%;\n    display: inline-block;\n    width: 100%;\n  }\n  .form-collapse-hidden {\n    display: none !important;\n  }\n  .form-input {\n    width: 100%;\n  }\n  .form-label {\n    width: 100% !important;\n  }\n  .form-label-left,\n  .form-label-right {\n    display: block;\n    float: none;\n    text-align: left;\n    width: auto!important;\n  }\n  .form-line,\n  .form-line.form-line-column {\n    padding: 2% 5%;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  input[type=text],\n  input[type=email],\n  input[type=tel],\n  textarea {\n    width: 100%;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n    max-width: initial !important;\n  }\n  .form-dropdown,\n  .form-textarea,\n  .form-textbox {\n    width: 100%!important;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  .form-input,\n  .form-input-wide,\n  .form-textarea,\n  .form-textbox,\n  .form-dropdown {\n    max-width: initial!important;\n  }\n  .form-address-city,\n  .form-address-line,\n  .form-address-postal,\n  .form-address-state,\n  .form-address-table,\n  .form-address-table .form-sub-label-container,\n  .form-address-table select,\n  .form-input {\n    width: 100%;\n  }\n  div.form-header-group {\n    padding: 24px 0px !important;\n    margin: 0 12px 2% !important;\n    margin-left: 5%!important;\n    margin-right: 5%!important;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  div.form-header-group.hasImage img {\n    max-width: 100%;\n  }\n  [data-type=\"control_button\"] {\n    margin-bottom: 0 !important;\n  }\n  [data-type=control_fullname] .form-sub-label-container {\n    width: 48%;\n  }\n  [data-type=control_fullname] .form-sub-label-container:first-child {\n    margin-right: 4%;\n  }\n  [data-type=control_phone] .form-sub-label-container {\n    width: 65%;\n  }\n  [data-type=control_phone] .form-sub-label-container:first-child {\n    width: 31%;\n    margin-right: 4%;\n  }\n  [data-type=control_datetime] .form-sub-label-container + .form-sub-label-container,\n  [data-type=control_datetime] .form-sub-label-container:first-child {\n    width: 27.3%;\n    margin-right: 6%;\n  }\n  [data-type=control_datetime] .form-sub-label-container + .form-sub-label-container + .form-sub-label-container {\n    width: 33.3%;\n    margin-right: 0;\n  }\n  [data-type=control_datetime] span + span + span > span:first-child {\n    display: block;\n    width: 100% !important;\n  }\n  [data-type=control_birthdate] .form-sub-label-container,\n  [data-type=control_datetime] span + span + span > span:first-child + span + span,\n  [data-type=control_time] .form-sub-label-container {\n    width: 27.3%!important;\n    margin-right: 6% !important;\n  }\n  [data-type=control_birthdate] .form-sub-label-container:last-child,\n  [data-type=control_time] .form-sub-label-container:last-child {\n    width: 33.3%!important;\n    margin-right: 0 !important;\n  }\n  .form-pagebreak-back-container,\n  .form-pagebreak-next-container {\n    min-height: 1px;\n    width: 50% !important;\n  }\n  .form-pagebreak-back,\n  .form-pagebreak-next,\n  .form-product-item.hover-product-item {\n    width: 100%;\n  }\n  .form-pagebreak-back-container {\n    padding: 0;\n    text-align: right;\n  }\n  .form-pagebreak-next-container {\n    padding: 0;\n    text-align: left;\n  }\n  .form-pagebreak {\n    margin: 0 auto;\n  }\n  .form-buttons-wrapper {\n    margin: 0!important;\n    margin-left: 0!important;\n  }\n  .form-buttons-wrapper button {\n    width: 100%;\n  }\n  .form-buttons-wrapper .form-submit-print {\n    margin: 0 !important;\n  }\n  table {\n    width: 100%!important;\n    max-width: initial!important;\n  }\n  table td + td {\n    padding-left: 3%;\n  }\n  .form-checkbox-item,\n  .form-radio-item {\n    white-space: normal!important;\n  }\n  .form-checkbox-item input,\n  .form-radio-item input {\n    width: auto;\n  }\n  .form-collapse-table {\n    margin: 0 5%;\n    display: block;\n    zoom: 1;\n    width: auto;\n  }\n  .form-collapse-table:before,\n  .form-collapse-table:after {\n    display: table;\n    content: '';\n    line-height: 0;\n  }\n  .form-collapse-table:after {\n    clear: both;\n  }\n  .fb-like-box {\n    width: 98% !important;\n  }\n  .form-error-message {\n    clear: both;\n    bottom: -10px;\n  }\n  .date-separate,\n  .phone-separate {\n    display: none;\n  }\n  .custom-field-frame,\n  .direct-embed-widgets,\n  .signature-pad-wrapper {\n    width: 100% !important;\n  }\n}\n\/* | *\/\n\n\/*PREFERENCES STYLE*\/\n    .form-all {\n      font-family: Lucida Grande, sans-serif;\n    }\n    .form-all .qq-upload-button,\n    .form-all .form-submit-button,\n    .form-all .form-submit-reset,\n    .form-all .form-submit-print {\n      font-family: Lucida Grande, sans-serif;\n    }\n    .form-all .form-pagebreak-back-container,\n    .form-all .form-pagebreak-next-container {\n      font-family: Lucida Grande, sans-serif;\n    }\n    .form-header-group {\n      font-family: Lucida Grande, sans-serif;\n    }\n    .form-label {\n      font-family: Lucida Grande, sans-serif;\n    }\n  \n    .form-label.form-label-auto {\n      \n    display: block;\n    float: none;\n    text-align: left;\n    width: 100%;\n  \n    }\n  \n    .form-line {\n      margin-top: 0px;\n      margin-bottom: 0px;\n    }\n  \n    .form-all {\n      width: 900px;\n    }\n  \n    .form-label-left,\n    .form-label-right,\n    .form-label-left.form-label-auto,\n    .form-label-right.form-label-auto {\n      width: 800px;\n    }\n  \n    .form-all {\n      font-size: 14px\n    }\n    .form-all .qq-upload-button,\n    .form-all .qq-upload-button,\n    .form-all .form-submit-button,\n    .form-all .form-submit-reset,\n    .form-all .form-submit-print {\n      font-size: 14px\n    }\n    .form-all .form-pagebreak-back-container,\n    .form-all .form-pagebreak-next-container {\n      font-size: 14px\n    }\n  \n    .supernova .form-all, .form-all {\n      background-color: #fff;\n      border: 1px solid transparent;\n    }\n  \n    .form-all {\n      color: #555;\n    }\n    .form-header-group .form-header {\n      color: #555;\n    }\n    .form-header-group .form-subHeader {\n      color: #555;\n    }\n    .form-label-top,\n    .form-label-left,\n    .form-label-right,\n    .form-html,\n    .form-checkbox-item label,\n    .form-radio-item label {\n      color: #555;\n    }\n    .form-sub-label {\n      color: #6f6f6f;\n    }\n  \n    .supernova {\n      background-color: undefined;\n    }\n    .supernova body {\n      background: transparent;\n    }\n  \n    .form-textbox,\n    .form-textarea,\n    .form-radio-other-input,\n    .form-checkbox-other-input,\n    .form-captcha input,\n    .form-spinner input {\n      background-color: undefined;\n    }\n  \n    .supernova {\n      background-image: none;\n    }\n    #stage {\n      background-image: none;\n    }\n  \n    .form-all {\n      background-image: none;\n    }\n  \n  .ie-8 .form-all:before { display: none; }\n  .ie-8 {\n    margin-top: auto;\n    margin-top: initial;\n  }\n  \n  \/*PREFERENCES STYLE*\/\/*__INSPECT_SEPERATOR__*\/\n\n    \/* Injected CSS Code *\/\n<\/style>\n\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/prototype.forms.js\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/jotform.forms.js?3.3.4218\" 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.alterTexts({\"alphabetic\":\"This field can only contain letters\",\"alphanumeric\":\"This field can only contain letters and numbers.\",\"ccDonationMinLimitError\":\"Minimum amount is {minAmount} {currency}\",\"ccInvalidCVC\":\"CVC number is invalid.\",\"ccInvalidExpireDate\":\"Expire date is invalid.\",\"ccInvalidNumber\":\"Credit Card Number is invalid.\",\"ccMissingDetails\":\"Please fill up the Credit Card details.\",\"ccMissingDonation\":\"Please enter numeric values for donation amount.\",\"ccMissingProduct\":\"Please select at least one product.\",\"characterLimitError\":\"Too many Characters.  The limit is\",\"characterMinLimitError\":\"Too few characters. The minimum is\",\"confirmClearForm\":\"Are you sure you want to clear the form?\",\"confirmEmail\":\"E-mail does not match\",\"currency\":\"This field can only contain currency values.\",\"cyrillic\":\"This field can only contain cyrillic characters\",\"dateInvalid\":\"This date is not valid. The date format is {format}\",\"dateInvalidSeparate\":\"This date is not valid. Enter a valid {element}.\",\"dateLimited\":\"This date is unavailable.\",\"disallowDecimals\":\"Please enter a whole number.\",\"email\":\"Enter a valid e-mail address\",\"fillMask\":\"Field value must fill mask.\",\"freeEmailError\":\"Free email accounts are not allowed\",\"generalError\":\"There are errors on the form. Please fix them before continuing.\",\"generalPageError\":\"There are errors on this page. Please fix them before continuing.\",\"gradingScoreError\":\"Score total should only be less than or equal to\",\"incompleteFields\":\"There are incomplete required fields. Please complete them.\",\"inputCarretErrorA\":\"Input should not be less than the minimum value:\",\"inputCarretErrorB\":\"Input should not be greater than the maximum value:\",\"lessThan\":\"Your score should be less than or equal to\",\"maxDigitsError\":\"The maximum digits allowed is\",\"maxSelectionsError\":\"The maximum number of selections allowed is\",\"minSelectionsError\":\"The minimum required number of selections is\",\"multipleFileUploads_emptyError\":\"{file} is empty, please select files again without it.\",\"multipleFileUploads_fileLimitError\":\"Only {fileLimit} file uploads allowed.\",\"multipleFileUploads_minSizeError\":\"{file} is too small, minimum file size is {minSizeLimit}.\",\"multipleFileUploads_onLeave\":\"The files are being uploaded, if you leave now the upload will be cancelled.\",\"multipleFileUploads_sizeError\":\"{file} is too large, maximum file size is {sizeLimit}.\",\"multipleFileUploads_typeError\":\"{file} has invalid extension. Only {extensions} are allowed.\",\"nextButtonText\":\"Next\",\"numeric\":\"This field can only contain numeric values\",\"pastDatesDisallowed\":\"Date must not be in the past.\",\"pleaseWait\":\"Please wait...\",\"prevButtonText\":\"Previous\",\"progressMiddleText\":\"of\",\"required\":\"This field is required.\",\"requireEveryCell\":\"Every cell is required.\",\"requireEveryRow\":\"Every row is required.\",\"requireOne\":\"At least one field required.\",\"seeAllText\":\"See All\",\"submissionLimit\":\"Sorry! Only one entry is allowed.  Multiple submissions are disabled for this form.\",\"submitButtonText\":\"Submit\",\"uploadExtensions\":\"You can only upload following files:\",\"uploadFilesize\":\"File size cannot be bigger than:\",\"uploadFilesizemin\":\"File size cannot be smaller than:\",\"url\":\"This field can only contain a valid URL\",\"wordLimitError\":\"Too many words. The limit is\",\"wordMinLimitError\":\"Too few words.  The minimum is\"});\n\tJotForm.clearFieldOnHide=\"disable\";\n\tJotForm.submitError=\"jumpToFirstError\";\n    \/*INIT-END*\/\n});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,{\"name\":\"name1\",\"qid\":\"1\",\"text\":\"Name:\",\"type\":\"control_fullname\"},{\"name\":\"email2\",\"qid\":\"2\",\"text\":\"Email:\",\"type\":\"control_email\"},{\"name\":\"judgesName\",\"qid\":\"3\",\"text\":\"Judge&#039;s name:\",\"type\":\"control_textbox\"},{\"name\":\"club\",\"qid\":\"4\",\"text\":\"Club:\",\"type\":\"control_textbox\"},{\"name\":\"datePresented\",\"qid\":\"5\",\"text\":\"Date presented to club:\",\"type\":\"control_textbox\"},{\"name\":\"medium6\",\"qid\":\"6\",\"text\":\"Medium:\",\"type\":\"control_checkbox\"},{\"name\":\"methodOf\",\"qid\":\"7\",\"text\":\"Method of reporting:\",\"type\":\"control_radio\"},{\"name\":\"divider\",\"qid\":\"8\",\"type\":\"control_divider\"},{\"name\":\"clickTo\",\"qid\":\"9\",\"text\":\"Questions:\",\"type\":\"control_text\"},{\"name\":\"q1Did\",\"qid\":\"10\",\"text\":\"Q1 Did you yourself have entries in the competition?\",\"type\":\"control_radio\"},{\"name\":\"ifYes\",\"qid\":\"11\",\"text\":\"If Yes: Did your entries do as well as you expected?\",\"type\":\"control_radio\"},{\"name\":\"q5Did\",\"qid\":\"12\",\"text\":\"Q5 Did the judge seem to be enthusiastic - pleased to be judging for your club?\",\"type\":\"control_radio\"},{\"name\":\"q3Did13\",\"qid\":\"13\",\"text\":\"Q3 Did you feel the judge was fair?\",\"type\":\"control_radio\"},{\"name\":\"q4Did\",\"qid\":\"14\",\"text\":\"Q4 Did you think the judge was mostly correct?\",\"type\":\"control_radio\"},{\"name\":\"q2Did15\",\"qid\":\"15\",\"text\":\"Q2 Did you feel the judge&#039;s opinions were well thought through?\",\"type\":\"control_radio\"},{\"name\":\"q6Did\",\"qid\":\"16\",\"text\":\"Q6 Did the judge seem to appreciate the photographer&#039;s vision for most of the images entered?\",\"type\":\"control_radio\"},{\"name\":\"q7Did\",\"qid\":\"17\",\"text\":\"Q7 Did the judge provide constructive feedback which was helpful to less successful entrants?\",\"type\":\"control_radio\"},{\"name\":\"q8How\",\"qid\":\"18\",\"text\":\"Q8 How did you find the length of the judge&#039;s comments on individual images?\",\"type\":\"control_radio\"},{\"name\":\"q9Did\",\"qid\":\"19\",\"text\":\"Q9 Did the judge show any bias towards certain aspects or types of work?\",\"type\":\"control_radio\"},{\"name\":\"ifYes20\",\"qid\":\"20\",\"text\":\"If yes, what aspects or type(s) of work did he\/she seem to favour?\",\"type\":\"control_textbox\"},{\"name\":\"q10Did\",\"qid\":\"21\",\"text\":\"Q10 Did the judge show any bias against certain aspects or types of work? (for example &quot;not another sunset&quot;)\",\"type\":\"control_radio\"},{\"name\":\"ifYes22\",\"qid\":\"22\",\"text\":\"If yes, what aspects or type(s) of work did he\/she seem to be biased against?\",\"type\":\"control_textbox\"},{\"name\":\"q11In\",\"qid\":\"23\",\"text\":\"Q11 In general, do you think the judge was too hard or too soft&gt;\",\"type\":\"control_radio\"},{\"name\":\"q12Was\",\"qid\":\"24\",\"text\":\"Q12 Was the judge given a brief on how they were expected to comment on the different grades, and did the judge follow this?\",\"type\":\"control_radio\"},{\"name\":\"q13Did\",\"qid\":\"25\",\"text\":\"Q13 Did the judge allocate the appropriate number of awards as required by your club&#039;s guidelines?\",\"type\":\"control_radio\"},{\"name\":\"q14Based\",\"qid\":\"26\",\"text\":\"Q14 Based on comments on the day, how do you think most of the members present would have rated the judge?\",\"type\":\"control_radio\"},{\"name\":\"q15Is\",\"qid\":\"27\",\"text\":\"Q15 Is your club likely to use this judge again?\",\"type\":\"control_radio\"},{\"name\":\"q16Did\",\"qid\":\"28\",\"text\":\"Q16 Did the judge stick to the time frame requested of them?\",\"type\":\"control_radio\"},{\"name\":\"hereAre\",\"qid\":\"29\",\"text\":\"Here are some comments camera club members have made about judges in the past. Would you please tick any that apply to this particular judge.  You can tick as many or as few as you wish.\",\"type\":\"control_checkbox\"},{\"name\":\"finallyWe\",\"qid\":\"30\",\"text\":\"Finally, we would like to be able to pass on this assessment to the judge - but only naming the club, not naming the author. Are you happy for us to pass on this assessment to help the judge monitor his\/her progress?\",\"type\":\"control_radio\"},{\"name\":\"date\",\"qid\":\"31\",\"text\":\"Date:\",\"type\":\"control_textbox\"},{\"name\":\"generalComments\",\"qid\":\"32\",\"text\":\"General Comments:\",\"type\":\"control_textarea\"},{\"name\":\"submit\",\"qid\":\"33\",\"text\":\"Submit\",\"type\":\"control_button\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,{\"name\":\"name1\",\"qid\":\"1\",\"text\":\"Name:\",\"type\":\"control_fullname\"},{\"name\":\"email2\",\"qid\":\"2\",\"text\":\"Email:\",\"type\":\"control_email\"},{\"name\":\"judgesName\",\"qid\":\"3\",\"text\":\"Judge&#039;s name:\",\"type\":\"control_textbox\"},{\"name\":\"club\",\"qid\":\"4\",\"text\":\"Club:\",\"type\":\"control_textbox\"},{\"name\":\"datePresented\",\"qid\":\"5\",\"text\":\"Date presented to club:\",\"type\":\"control_textbox\"},{\"name\":\"medium6\",\"qid\":\"6\",\"text\":\"Medium:\",\"type\":\"control_checkbox\"},{\"name\":\"methodOf\",\"qid\":\"7\",\"text\":\"Method of reporting:\",\"type\":\"control_radio\"},{\"name\":\"divider\",\"qid\":\"8\",\"type\":\"control_divider\"},{\"name\":\"clickTo\",\"qid\":\"9\",\"text\":\"Questions:\",\"type\":\"control_text\"},{\"name\":\"q1Did\",\"qid\":\"10\",\"text\":\"Q1 Did you yourself have entries in the competition?\",\"type\":\"control_radio\"},{\"name\":\"ifYes\",\"qid\":\"11\",\"text\":\"If Yes: Did your entries do as well as you expected?\",\"type\":\"control_radio\"},{\"name\":\"q5Did\",\"qid\":\"12\",\"text\":\"Q5 Did the judge seem to be enthusiastic - pleased to be judging for your club?\",\"type\":\"control_radio\"},{\"name\":\"q3Did13\",\"qid\":\"13\",\"text\":\"Q3 Did you feel the judge was fair?\",\"type\":\"control_radio\"},{\"name\":\"q4Did\",\"qid\":\"14\",\"text\":\"Q4 Did you think the judge was mostly correct?\",\"type\":\"control_radio\"},{\"name\":\"q2Did15\",\"qid\":\"15\",\"text\":\"Q2 Did you feel the judge&#039;s opinions were well thought through?\",\"type\":\"control_radio\"},{\"name\":\"q6Did\",\"qid\":\"16\",\"text\":\"Q6 Did the judge seem to appreciate the photographer&#039;s vision for most of the images entered?\",\"type\":\"control_radio\"},{\"name\":\"q7Did\",\"qid\":\"17\",\"text\":\"Q7 Did the judge provide constructive feedback which was helpful to less successful entrants?\",\"type\":\"control_radio\"},{\"name\":\"q8How\",\"qid\":\"18\",\"text\":\"Q8 How did you find the length of the judge&#039;s comments on individual images?\",\"type\":\"control_radio\"},{\"name\":\"q9Did\",\"qid\":\"19\",\"text\":\"Q9 Did the judge show any bias towards certain aspects or types of work?\",\"type\":\"control_radio\"},{\"name\":\"ifYes20\",\"qid\":\"20\",\"text\":\"If yes, what aspects or type(s) of work did he\/she seem to favour?\",\"type\":\"control_textbox\"},{\"name\":\"q10Did\",\"qid\":\"21\",\"text\":\"Q10 Did the judge show any bias against certain aspects or types of work? (for example &quot;not another sunset&quot;)\",\"type\":\"control_radio\"},{\"name\":\"ifYes22\",\"qid\":\"22\",\"text\":\"If yes, what aspects or type(s) of work did he\/she seem to be biased against?\",\"type\":\"control_textbox\"},{\"name\":\"q11In\",\"qid\":\"23\",\"text\":\"Q11 In general, do you think the judge was too hard or too soft&gt;\",\"type\":\"control_radio\"},{\"name\":\"q12Was\",\"qid\":\"24\",\"text\":\"Q12 Was the judge given a brief on how they were expected to comment on the different grades, and did the judge follow this?\",\"type\":\"control_radio\"},{\"name\":\"q13Did\",\"qid\":\"25\",\"text\":\"Q13 Did the judge allocate the appropriate number of awards as required by your club&#039;s guidelines?\",\"type\":\"control_radio\"},{\"name\":\"q14Based\",\"qid\":\"26\",\"text\":\"Q14 Based on comments on the day, how do you think most of the members present would have rated the judge?\",\"type\":\"control_radio\"},{\"name\":\"q15Is\",\"qid\":\"27\",\"text\":\"Q15 Is your club likely to use this judge again?\",\"type\":\"control_radio\"},{\"name\":\"q16Did\",\"qid\":\"28\",\"text\":\"Q16 Did the judge stick to the time frame requested of them?\",\"type\":\"control_radio\"},{\"name\":\"hereAre\",\"qid\":\"29\",\"text\":\"Here are some comments camera club members have made about judges in the past. Would you please tick any that apply to this particular judge.  You can tick as many or as few as you wish.\",\"type\":\"control_checkbox\"},{\"name\":\"finallyWe\",\"qid\":\"30\",\"text\":\"Finally, we would like to be able to pass on this assessment to the judge - but only naming the club, not naming the author. Are you happy for us to pass on this assessment to help the judge monitor his\/her progress?\",\"type\":\"control_radio\"},{\"name\":\"date\",\"qid\":\"31\",\"text\":\"Date:\",\"type\":\"control_textbox\"},{\"name\":\"generalComments\",\"qid\":\"32\",\"text\":\"General Comments:\",\"type\":\"control_textarea\"},{\"name\":\"submit\",\"qid\":\"33\",\"text\":\"Submit\",\"type\":\"control_button\"}]);}, 20); \n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotform.co\/submit\/73046761570861\/\" method=\"post\" name=\"form_73046761570861\" id=\"73046761570861\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"73046761570861\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section page-section\">\n      <li class=\"form-line\" data-type=\"control_fullname\" id=\"id_1\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_1\" for=\"first_1\"> Name: <\/label>\n        <div id=\"cid_1\" class=\"form-input-wide\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"first_1\" name=\"q1_name1[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n              <label class=\"form-sub-label\" for=\"first_1\" id=\"sublabel_first\" style=\"min-height:13px;\"> First Name <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"last_1\" name=\"q1_name1[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n              <label class=\"form-sub-label\" for=\"last_1\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_email\" id=\"id_2\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_2\" for=\"input_2\"> Email: <\/label>\n        <div id=\"cid_2\" class=\"form-input-wide\">\n          <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n            <input type=\"email\" id=\"input_2\" name=\"q2_email2\" class=\"form-textbox validate[Email]\" size=\"30\" value=\"\" data-component=\"email\" \/>\n            <label class=\"form-sub-label\" for=\"input_2\" style=\"min-height:13px;\"> example@example.com <\/label>\n          <\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_3\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_3\" for=\"input_3\"> Judge's name: <\/label>\n        <div id=\"cid_3\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_3\" name=\"q3_judgesName\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_4\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_4\" for=\"input_4\"> Club: <\/label>\n        <div id=\"cid_4\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_4\" name=\"q4_club\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_5\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_5\" for=\"input_5\"> Date presented to club: <\/label>\n        <div id=\"cid_5\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_5\" name=\"q5_datePresented\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_6\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_6\" for=\"input_6_0\"> Medium: <\/label>\n        <div id=\"cid_6\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\">\n            <span class=\"form-checkbox-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_6_0\" name=\"q6_medium6[]\" value=\"Print\" \/>\n              <label id=\"label_input_6_0\" for=\"input_6_0\"> Print <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_6_1\" name=\"q6_medium6[]\" value=\"Digital\" \/>\n              <label id=\"label_input_6_1\" for=\"input_6_1\"> Digital <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1\" data-type=\"control_radio\" id=\"id_7\">\n        <label class=\"form-label form-label-top\" id=\"label_7\" for=\"input_7\"> Method of reporting: <\/label>\n        <div id=\"cid_7\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_7_0\" name=\"q7_methodOf\" value=\"In person\" \/>\n              <label id=\"label_input_7_0\" for=\"input_7_0\"> In person <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_7_1\" name=\"q7_methodOf\" value=\"Written comments\" \/>\n              <label id=\"label_input_7_1\" for=\"input_7_1\"> Written comments <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_7_2\" name=\"q7_methodOf\" value=\"Audio file\" \/>\n              <label id=\"label_input_7_2\" for=\"input_7_2\"> Audio file <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_7_3\" name=\"q7_methodOf\" value=\"Other\" \/>\n              <label id=\"label_input_7_3\" for=\"input_7_3\"> Other <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_divider\" id=\"id_8\">\n        <div id=\"cid_8\" class=\"form-input-wide\">\n          <div data-component=\"divider\" style=\"border-bottom:1px solid #e6e6e6;height:1px;margin-left:0px;margin-right:0px;margin-top:5px;margin-bottom:5px;\">\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_9\">\n        <div id=\"cid_9\" class=\"form-input-wide\">\n          <div id=\"text_9\" class=\"form-html\" data-component=\"text\">\n            <p><strong><span style=\"text-decoration: underline;\">Questions<\/span>:<\/strong><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_10\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_10\" for=\"input_10\"> Q1 Did you yourself have entries in the competition? <\/label>\n        <div id=\"cid_10\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_10_0\" name=\"q10_q1Did\" value=\"Yes\" \/>\n              <label id=\"label_input_10_0\" for=\"input_10_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_10_1\" name=\"q10_q1Did\" value=\"No (Go to Q2)\" \/>\n              <label id=\"label_input_10_1\" for=\"input_10_1\"> No (Go to Q2) <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_11\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_11\" for=\"input_11\"> If Yes: Did your entries do as well as you expected? <\/label>\n        <div id=\"cid_11\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_11_0\" name=\"q11_ifYes\" value=\"Yes, about as well as I expected\" \/>\n              <label id=\"label_input_11_0\" for=\"input_11_0\"> Yes, about as well as I expected <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_11_1\" name=\"q11_ifYes\" value=\"No, not as well as I expected\" \/>\n              <label id=\"label_input_11_1\" for=\"input_11_1\"> No, not as well as I expected <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_11_2\" name=\"q11_ifYes\" value=\"Not sure\" \/>\n              <label id=\"label_input_11_2\" for=\"input_11_2\"> Not sure <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_15\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_15\" for=\"input_15\"> Q2 Did you feel the judge's opinions were well thought through? <\/label>\n        <div id=\"cid_15\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_15_0\" name=\"q15_q2Did15\" value=\"Yes very\" \/>\n              <label id=\"label_input_15_0\" for=\"input_15_0\"> Yes very <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_15_1\" name=\"q15_q2Did15\" value=\"Yes quite\" \/>\n              <label id=\"label_input_15_1\" for=\"input_15_1\"> Yes quite <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_15_2\" name=\"q15_q2Did15\" value=\"Not particularly\" \/>\n              <label id=\"label_input_15_2\" for=\"input_15_2\"> Not particularly <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_15_3\" name=\"q15_q2Did15\" value=\"Undecided\" \/>\n              <label id=\"label_input_15_3\" for=\"input_15_3\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_13\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_13\" for=\"input_13\"> Q3 Did you feel the judge was fair? <\/label>\n        <div id=\"cid_13\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"3\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_13_0\" name=\"q13_q3Did13\" value=\"Yes\" \/>\n              <label id=\"label_input_13_0\" for=\"input_13_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_13_1\" name=\"q13_q3Did13\" value=\"No\" \/>\n              <label id=\"label_input_13_1\" for=\"input_13_1\"> No <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_13_2\" name=\"q13_q3Did13\" value=\"Undecided\" \/>\n              <label id=\"label_input_13_2\" for=\"input_13_2\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_14\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_14\" for=\"input_14\"> Q4 Did you think the judge was mostly correct? <\/label>\n        <div id=\"cid_14\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"3\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_14_0\" name=\"q14_q4Did\" value=\"Yes\" \/>\n              <label id=\"label_input_14_0\" for=\"input_14_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_14_1\" name=\"q14_q4Did\" value=\"No\" \/>\n              <label id=\"label_input_14_1\" for=\"input_14_1\"> No <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_14_2\" name=\"q14_q4Did\" value=\"Undecided\" \/>\n              <label id=\"label_input_14_2\" for=\"input_14_2\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_12\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_12\" for=\"input_12\"> Q5 Did the judge seem to be enthusiastic - pleased to be judging for your club? <\/label>\n        <div id=\"cid_12\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_12_0\" name=\"q12_q5Did\" value=\"Yes very\" \/>\n              <label id=\"label_input_12_0\" for=\"input_12_0\"> Yes very <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_12_1\" name=\"q12_q5Did\" value=\"Yes quite\" \/>\n              <label id=\"label_input_12_1\" for=\"input_12_1\"> Yes quite <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_12_2\" name=\"q12_q5Did\" value=\"Not particularly\" \/>\n              <label id=\"label_input_12_2\" for=\"input_12_2\"> Not particularly <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_12_3\" name=\"q12_q5Did\" value=\"Undecided\" \/>\n              <label id=\"label_input_12_3\" for=\"input_12_3\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_16\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_16\" for=\"input_16\"> Q6 Did the judge seem to appreciate the photographer's vision for most of the images entered? <\/label>\n        <div id=\"cid_16\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"3\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_16_0\" name=\"q16_q6Did\" value=\"Yes\" \/>\n              <label id=\"label_input_16_0\" for=\"input_16_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_16_1\" name=\"q16_q6Did\" value=\"No\" \/>\n              <label id=\"label_input_16_1\" for=\"input_16_1\"> No <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_16_2\" name=\"q16_q6Did\" value=\"Undecided\" \/>\n              <label id=\"label_input_16_2\" for=\"input_16_2\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_17\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_17\" for=\"input_17\"> Q7 Did the judge provide constructive feedback which was helpful to less successful entrants? <\/label>\n        <div id=\"cid_17\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_17_0\" name=\"q17_q7Did\" value=\"Yes very\" \/>\n              <label id=\"label_input_17_0\" for=\"input_17_0\"> Yes very <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_17_1\" name=\"q17_q7Did\" value=\"Yes quite\" \/>\n              <label id=\"label_input_17_1\" for=\"input_17_1\"> Yes quite <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_17_2\" name=\"q17_q7Did\" value=\"Not particularly\" \/>\n              <label id=\"label_input_17_2\" for=\"input_17_2\"> Not particularly <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_17_3\" name=\"q17_q7Did\" value=\"Undecided\" \/>\n              <label id=\"label_input_17_3\" for=\"input_17_3\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_18\">\n        <label class=\"form-label form-label-top\" id=\"label_18\" for=\"input_18\"> Q8 How did you find the length of the judge's comments on individual images? <\/label>\n        <div id=\"cid_18\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_0\" name=\"q18_q8How\" value=\"Much too long\" \/>\n              <label id=\"label_input_18_0\" for=\"input_18_0\"> Much too long <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_1\" name=\"q18_q8How\" value=\"A bit too long\" \/>\n              <label id=\"label_input_18_1\" for=\"input_18_1\"> A bit too long <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_2\" name=\"q18_q8How\" value=\"About right\" \/>\n              <label id=\"label_input_18_2\" for=\"input_18_2\"> About right <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_3\" name=\"q18_q8How\" value=\"A bit too short\" \/>\n              <label id=\"label_input_18_3\" for=\"input_18_3\"> A bit too short <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_4\" name=\"q18_q8How\" value=\"Definitely too short\" \/>\n              <label id=\"label_input_18_4\" for=\"input_18_4\"> Definitely too short <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_18_5\" name=\"q18_q8How\" value=\"Undecided\" \/>\n              <label id=\"label_input_18_5\" for=\"input_18_5\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_19\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_19\" for=\"input_19\"> Q9 Did the judge show any bias towards certain aspects or types of work? <\/label>\n        <div id=\"cid_19\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_19_0\" name=\"q19_q9Did\" value=\"Yes (continue)\" \/>\n              <label id=\"label_input_19_0\" for=\"input_19_0\"> Yes (continue) <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_19_1\" name=\"q19_q9Did\" value=\"No (go to Q10)\" \/>\n              <label id=\"label_input_19_1\" for=\"input_19_1\"> No (go to Q10) <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_19_2\" name=\"q19_q9Did\" value=\"Undecided (go to Q11)\" \/>\n              <label id=\"label_input_19_2\" for=\"input_19_2\"> Undecided (go to Q11) <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_20\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_20\" for=\"input_20\"> If yes, what aspects or type(s) of work did he\/she seem to favour? <\/label>\n        <div id=\"cid_20\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_20\" name=\"q20_ifYes20\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_21\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_21\" for=\"input_21\"> Q10 Did the judge show any bias against certain aspects or types of work? (for example &quot;not another sunset&quot;) <\/label>\n        <div id=\"cid_21\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_21_0\" name=\"q21_q10Did\" value=\"Yes (continue)\" \/>\n              <label id=\"label_input_21_0\" for=\"input_21_0\"> Yes (continue) <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_21_1\" name=\"q21_q10Did\" value=\"No (go to Q11)\" \/>\n              <label id=\"label_input_21_1\" for=\"input_21_1\"> No (go to Q11) <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_21_2\" name=\"q21_q10Did\" value=\"Undecided (go to Q11)\" \/>\n              <label id=\"label_input_21_2\" for=\"input_21_2\"> Undecided (go to Q11) <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_22\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_22\" for=\"input_22\"> If yes, what aspects or type(s) of work did he\/she seem to be biased against? <\/label>\n        <div id=\"cid_22\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_22\" name=\"q22_ifYes22\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_23\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_23\" for=\"input_23\"> Q11 In general, do you think the judge was too hard or too soft&gt; <\/label>\n        <div id=\"cid_23\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_0\" name=\"q23_q11In\" value=\"Much too hard\" \/>\n              <label id=\"label_input_23_0\" for=\"input_23_0\"> Much too hard <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_1\" name=\"q23_q11In\" value=\"A bit too hard\" \/>\n              <label id=\"label_input_23_1\" for=\"input_23_1\"> A bit too hard <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_2\" name=\"q23_q11In\" value=\"About right\" \/>\n              <label id=\"label_input_23_2\" for=\"input_23_2\"> About right <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_3\" name=\"q23_q11In\" value=\"A bit soft\" \/>\n              <label id=\"label_input_23_3\" for=\"input_23_3\"> A bit soft <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_4\" name=\"q23_q11In\" value=\"Much too soft\" \/>\n              <label id=\"label_input_23_4\" for=\"input_23_4\"> Much too soft <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_5\" name=\"q23_q11In\" value=\"Variable\" \/>\n              <label id=\"label_input_23_5\" for=\"input_23_5\"> Variable <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_6\" name=\"q23_q11In\" value=\"Very variable\" \/>\n              <label id=\"label_input_23_6\" for=\"input_23_6\"> Very variable <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_23_7\" name=\"q23_q11In\" value=\"Undecided\" \/>\n              <label id=\"label_input_23_7\" for=\"input_23_7\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_24\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_24\" for=\"input_24\"> Q12 Was the judge given a brief on how they were expected to comment on the different grades, and did the judge follow this? <\/label>\n        <div id=\"cid_24\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_24_0\" name=\"q24_q12Was\" value=\"Yes they were given and followed the brief\" \/>\n              <label id=\"label_input_24_0\" for=\"input_24_0\"> Yes they were given and followed the brief <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_24_1\" name=\"q24_q12Was\" value=\"No they did not have a brief\" \/>\n              <label id=\"label_input_24_1\" for=\"input_24_1\"> No they did not have a brief <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_24_2\" name=\"q24_q12Was\" value=\"No they were given a brief but did NOT follow it\" \/>\n              <label id=\"label_input_24_2\" for=\"input_24_2\"> No they were given a brief but did NOT follow it <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_25\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_25\" for=\"input_25\"> Q13 Did the judge allocate the appropriate number of awards as required by your club's guidelines? <\/label>\n        <div id=\"cid_25\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"radio\">\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_0\" name=\"q25_q13Did\" value=\"A lot too many\" \/>\n              <label id=\"label_input_25_0\" for=\"input_25_0\"> A lot too many <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_1\" name=\"q25_q13Did\" value=\"A few too many\" \/>\n              <label id=\"label_input_25_1\" for=\"input_25_1\"> A few too many <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_2\" name=\"q25_q13Did\" value=\"About the right number\" \/>\n              <label id=\"label_input_25_2\" for=\"input_25_2\"> About the right number <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_3\" name=\"q25_q13Did\" value=\"Not quite enough\" \/>\n              <label id=\"label_input_25_3\" for=\"input_25_3\"> Not quite enough <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_4\" name=\"q25_q13Did\" value=\"Not nearly enough\" \/>\n              <label id=\"label_input_25_4\" for=\"input_25_4\"> Not nearly enough <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_25_5\" name=\"q25_q13Did\" value=\"Undecided \/ NA\" \/>\n              <label id=\"label_input_25_5\" for=\"input_25_5\"> Undecided \/ NA <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_26\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_26\" for=\"input_26\"> Q14 Based on comments on the day, how do you think most of the members present would have rated the judge? <\/label>\n        <div id=\"cid_26\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_26_0\" name=\"q26_q14Based\" value=\"Very good\" \/>\n              <label id=\"label_input_26_0\" for=\"input_26_0\"> Very good <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_26_1\" name=\"q26_q14Based\" value=\"Quite good\" \/>\n              <label id=\"label_input_26_1\" for=\"input_26_1\"> Quite good <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_26_2\" name=\"q26_q14Based\" value=\"So so\" \/>\n              <label id=\"label_input_26_2\" for=\"input_26_2\"> So so <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_26_3\" name=\"q26_q14Based\" value=\"Not so good\" \/>\n              <label id=\"label_input_26_3\" for=\"input_26_3\"> Not so good <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_26_4\" name=\"q26_q14Based\" value=\"Undecided\" \/>\n              <label id=\"label_input_26_4\" for=\"input_26_4\"> Undecided <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_27\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_27\" for=\"input_27\"> Q15 Is your club likely to use this judge again? <\/label>\n        <div id=\"cid_27\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_27_0\" name=\"q27_q15Is\" value=\"Yes definitely\" \/>\n              <label id=\"label_input_27_0\" for=\"input_27_0\"> Yes definitely <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_27_1\" name=\"q27_q15Is\" value=\"Yes probably\" \/>\n              <label id=\"label_input_27_1\" for=\"input_27_1\"> Yes probably <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_27_2\" name=\"q27_q15Is\" value=\"Not sure\" \/>\n              <label id=\"label_input_27_2\" for=\"input_27_2\"> Not sure <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_27_3\" name=\"q27_q15Is\" value=\"Probably not\" \/>\n              <label id=\"label_input_27_3\" for=\"input_27_3\"> Probably not <\/label>\n            <\/span>\n            <span class=\"form-radio-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_27_4\" name=\"q27_q15Is\" value=\"Definitely not\" \/>\n              <label id=\"label_input_27_4\" for=\"input_27_4\"> Definitely not <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_28\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_28\" for=\"input_28\"> Q16 Did the judge stick to the time frame requested of them? <\/label>\n        <div id=\"cid_28\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"3\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_28_0\" name=\"q28_q16Did\" value=\"Yes\" \/>\n              <label id=\"label_input_28_0\" for=\"input_28_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_28_1\" name=\"q28_q16Did\" value=\"No too long\" \/>\n              <label id=\"label_input_28_1\" for=\"input_28_1\"> No too long <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_28_2\" name=\"q28_q16Did\" value=\"No too short\" \/>\n              <label id=\"label_input_28_2\" for=\"input_28_2\"> No too short <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_29\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_29\" for=\"input_29_0\"> Here are some comments camera club members have made about judges in the past. Would you please tick any that apply to this particular judge. You can tick as many or as few as you wish. <\/label>\n        <div id=\"cid_29\" class=\"form-input-wide\">\n          <div class=\"form-single-column\" data-component=\"checkbox\">\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_0\" name=\"q29_hereAre[]\" value=\"This judge inspired me.\" \/>\n              <label id=\"label_input_29_0\" for=\"input_29_0\"> This judge inspired me. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_1\" name=\"q29_hereAre[]\" value=\"This judge irritated me.\" \/>\n              <label id=\"label_input_29_1\" for=\"input_29_1\"> This judge irritated me. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_2\" name=\"q29_hereAre[]\" value=\"This judge couldn&#x27;t see beyond technical shortcomings, as he\/she saw them.\" \/>\n              <label id=\"label_input_29_2\" for=\"input_29_2\"> This judge couldn't see beyond technical shortcomings, as he\/she saw them. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_3\" name=\"q29_hereAre[]\" value=\"This judge critiqued all the images in a positive and encouraging way.\" \/>\n              <label id=\"label_input_29_3\" for=\"input_29_3\"> This judge critiqued all the images in a positive and encouraging way. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_4\" name=\"q29_hereAre[]\" value=\"This judge seemed to have a very narrow viewpoint.\" \/>\n              <label id=\"label_input_29_4\" for=\"input_29_4\"> This judge seemed to have a very narrow viewpoint. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_5\" name=\"q29_hereAre[]\" value=\"This judge gave the same reason for rejecting lots of images, despite some not deserving to be rejected for the reason given.\" \/>\n              <label id=\"label_input_29_5\" for=\"input_29_5\"> This judge gave the same reason for rejecting lots of images, despite some not deserving to be rejected for the reason given. <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox\" id=\"input_29_6\" name=\"q29_hereAre[]\" value=\"We should have more judges like this one.\" \/>\n              <label id=\"label_input_29_6\" for=\"input_29_6\"> We should have more judges like this one. <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_radio\" id=\"id_30\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_30\" for=\"input_30\"> Finally, we would like to be able to pass on this assessment to the judge - but only naming the club, not naming the author. Are you happy for us to pass on this assessment to help the judge monitor his\/her progress? <\/label>\n        <div id=\"cid_30\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_30_0\" name=\"q30_finallyWe\" value=\"Yes\" \/>\n              <label id=\"label_input_30_0\" for=\"input_30_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_30_1\" name=\"q30_finallyWe\" value=\"No\" \/>\n              <label id=\"label_input_30_1\" for=\"input_30_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_31\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_31\" for=\"input_31\"> Date: <\/label>\n        <div id=\"cid_31\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_31\" name=\"q31_date\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textarea\" id=\"id_32\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_32\" for=\"input_32\"> General Comments: <\/label>\n        <div id=\"cid_32\" class=\"form-input-wide\">\n          <textarea id=\"input_32\" class=\"form-textarea\" name=\"q32_generalComments\" cols=\"80\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_button\" id=\"id_33\">\n        <div id=\"cid_33\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px;\" class=\"form-buttons-wrapper\">\n            <button id=\"input_33\" type=\"submit\" class=\"form-submit-button\" data-component=\"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  <script>\n  JotForm.showJotFormPowered = \"0\";\n  <\/script>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"73046761570861\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"73046761570861-73046761570861\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n","PSNZ Judge Assessment Questionnaire",Array,0);(function(){window.handleIFrameMessage=function(e){if(!e.data||!e.data.split)return;var args=e.data.split(":");var iframe=document.getElementById("73046761570861");if(!iframe){return};switch(args[0]){case"scrollIntoView":if(!("nojump"in FrameBuilder.get)){iframe.scrollIntoView();}
break;case"setHeight":iframe.style.height=args[1]+"px";break;case"setMinHeight":iframe.style.minHeight=args[1]+"px";break;case"collapseErrorPage":if(iframe.clientHeight>window.innerHeight){iframe.style.height=window.innerHeight+"px";}
break;case"reloadPage":if(iframe){location.reload();}
break;case"removeIframeOnloadAttr":iframe.removeAttribute("onload");break;case"loadScript":var src=args[1];if(args.length>3){src=args[1]+':'+args[2];}
var script=document.createElement('script');script.src=src;script.type='text/javascript';document.body.appendChild(script);break;}};if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();