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]['inlineStyle']['embedWidth'])){this.frameMinWidth=embedStyleJSON[this.embedURLHash]['inlineStyle']['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\" allowfullscreen=\"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 i80098152910858=new FrameBuilder("80098152910858",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%2F80098152910858\" 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%2F80098152910858\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"NABA BV Report Form\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/80098152910858\" >\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>NABA BV Report Form<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.4682\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/nova.css?3.3.4682\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.4682\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/themes\/CSS\/548b1325700cc48d318b4567.css?\"\/>\n<style type=\"text\/css\">\n    .form-label-left{\n        width:150px;\n    }\n    .form-line{\n        padding-top:12px;\n        padding-bottom:12px;\n    }\n    .form-label-right{\n        width:150px;\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:0px;\n        width:690px;\n        color:#555 !important;\n        font-family:'Muli';\n        font-size:16px;\n    }\n    .form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{\n        color: false;\n    }\n\n<\/style>\n\n<style type=\"text\/css\" id=\"form-designer-style\">\n    \/* Injected CSS Code *\/\n.form-label.form-label-auto {\n        \n        display: inline-block;\n        float: left;\n        text-align: left;\n      \n      }@import \"https:\/\/fonts.googleapis.com\/css?family=Muli:light,lightitalic,normal,italic,bold,bolditalic\";\n.form-all {\n  font-family: \"Muli\", sans-serif;\n}\n.form-all {\n  width: 690px;\n  width: 100%;\n  max-width: 690px;\n}\n.form-label-left,\n.form-label-right {\n  width: 150px;\n}\n.form-label {\n  white-space: normal;\n}\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-all {\n  font-size: 16px;\n}\n.form-label {\n  font-weight: normal;\n  font-size: 0.95em;\n}\n.supernova {\n  background-color: #ffffff;\n  background-color: #fafafa;\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 #e1e1e1;\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 {\n    padding: 10px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 768px) {\n  .jotform-form {\n    padding: 30px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 689px) {\n  .jotform-form {\n    padding: 30px 0;\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: 689px) {\n  .jotform-form {\n    padding: 0;\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: #3d87c8;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  color: #2e6da4;\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: rgba(255, 255, 224, 0);\n}\n\/* \u00f6mer *\/\n.form-radio-item,\n.form-checkbox-item {\n  padding-bottom: 2px !important;\n}\n.form-radio-item:last-child,\n.form-checkbox-item:last-child {\n  padding-bottom: 0;\n}\n\/* \u00f6mer *\/\n.form-single-column .form-checkbox-item,\n.form-single-column .form-radio-item {\n  width: 100%;\n}\n.form-radio-item:not(#foo) {\n  margin-bottom: 0;\n  position: relative;\n}\n.form-radio-item:not(#foo) input[type=\"checkbox\"],\n.form-radio-item:not(#foo) input[type=\"radio\"] {\n  display: none;\n}\n.form-radio-item:not(#foo) .form-radio-other,\n.form-radio-item:not(#foo) .form-checkbox-other {\n  display: inline-block !important;\n  margin-left: 7px;\n  margin-right: 3px;\n  margin-top: 2px;\n}\n.form-radio-item:not(#foo) .form-checkbox-other-input,\n.form-radio-item:not(#foo) .form-radio-other-input {\n  margin: 0;\n}\n.form-radio-item:not(#foo) label {\n  line-height: 18px;\n  margin-left: 0;\n  float: left;\n  text-indent: 27px;\n}\n.form-radio-item:not(#foo) label:before {\n  content: '';\n  position: absolute;\n  display: inline-block;\n  vertical-align: baseline;\n  margin-right: 4px;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n  -webkit-border-radius: 50%;\n  -moz-border-radius: 50%;\n  border-radius: 50%;\n  left: 4px;\n  width: 18px;\n  height: 18px;\n  cursor: pointer;\n}\n.form-radio-item:not(#foo) label:after {\n  content: '';\n  position: absolute;\n  z-index: 10;\n  display: inline-block;\n  opacity: 0;\n  top: 5px;\n  left: 9px;\n  width: 8px;\n  height: 8px;\n}\n.form-radio-item:not(#foo) input:checked + label:after {\n  opacity: 1;\n}\n.form-radio-item:not(#foo) label:before {\n  border: 2px solid #2e6da4;\n}\n.form-radio-item:not(#foo) label:after {\n  background-color: #2e6da4;\n  -webkit-border-radius: 50%;\n  -moz-border-radius: 50%;\n  border-radius: 50%;\n  cursor: pointer;\n}\n.form-checkbox-item:not(#foo) {\n  margin-bottom: 0;\n  position: relative;\n}\n.form-checkbox-item:not(#foo) input[type=\"checkbox\"],\n.form-checkbox-item:not(#foo) input[type=\"radio\"] {\n  display: none;\n}\n.form-checkbox-item:not(#foo) .form-radio-other,\n.form-checkbox-item:not(#foo) .form-checkbox-other {\n  display: inline-block !important;\n  margin-left: 7px;\n  margin-right: 3px;\n  margin-top: 2px;\n}\n.form-checkbox-item:not(#foo) .form-checkbox-other-input,\n.form-checkbox-item:not(#foo) .form-radio-other-input {\n  margin: 0;\n}\n.form-checkbox-item:not(#foo) label {\n  line-height: 18px;\n  margin-left: 0;\n  float: left;\n  text-indent: 27px;\n}\n.form-checkbox-item:not(#foo) label:before {\n  content: '';\n  position: absolute;\n  display: inline-block;\n  vertical-align: baseline;\n  margin-right: 4px;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n  -webkit-border-radius: 50%;\n  -moz-border-radius: 50%;\n  border-radius: 50%;\n  left: 4px;\n  width: 18px;\n  height: 18px;\n  cursor: pointer;\n}\n.form-checkbox-item:not(#foo) label:after {\n  content: '';\n  position: absolute;\n  z-index: 10;\n  display: inline-block;\n  opacity: 0;\n  top: 8px;\n  left: 9px;\n  width: 3px;\n  height: 3px;\n}\n.form-checkbox-item:not(#foo) input:checked + label:after {\n  opacity: 1;\n}\n.form-checkbox-item:not(#foo) label:before {\n  border: 2px solid #2e6da4;\n}\n.form-checkbox-item:not(#foo) label:after {\n  background-color: #2e6da4;\n  box-shadow: 0 2px 0 0 #2e6da4, 2px 2px 0 0 #2e6da4, 4px 2px 0 0 #2e6da4, 6px 2px 0 0 #2e6da4;\n  -moz-transform: rotate(-45deg);\n  -webkit-transform: rotate(-45deg);\n  -o-transform: rotate(-45deg);\n  -ms-transform: rotate(-45deg);\n  transform: rotate(-45deg);\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: 4px;\n  margin-bottom: 4px;\n}\n.form-line {\n  padding: 12px 36px;\n}\n.form-all {\n  -webkit-border-radius: 0px;\n  -moz-border-radius: 0px;\n  border-radius: 0px;\n}\n.form-section:first-child {\n  -webkit-border-radius: 0px 0px 0 0;\n  -moz-border-radius: 0px 0px 0 0;\n  border-radius: 0px 0px 0 0;\n}\n.form-section:last-child {\n  -webkit-border-radius: 0 0 0px 0px;\n  -moz-border-radius: 0 0 0px 0px;\n  border-radius: 0 0 0px 0px;\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: \"Muli\", sans-serif;\n  font-size: 16px;\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: \"Muli\", sans-serif;\n  font-size: 16px;\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: center;\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: \"Muli\", sans-serif;\n}\n.form-section {\n  padding: 1px 0px 1px 0px;\n}\n.form-header-group {\n  margin: 0px 0px 0px 0px;\n}\n.form-header-group {\n  padding: 10px 36px 10px 36px;\n}\n.form-header-group .form-header,\n.form-header-group .form-subHeader {\n  color: #2e6da4;\n}\n.form-header-group {\n  background-color: rgba(255, 255, 255, 0);\n}\n.form-textbox,\n.form-textarea {\n  border-color: #cccccc;\n  color: #494949;\n  padding: 3px 2px 1px 2px;\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: #ffffff;\n}\n.form-dropdown {\n  border-color: #cccccc;\n  color: #494949;\n  -webkit-appearance: menulist-button;\n  background-color: #ffffff;\n}\n[data-type=\"control_dropdown\"] .form-input,\n[data-type=\"control_dropdown\"] .form-input-wide {\n  width: 150px;\n}\n.form-dropdown {\n  margin: 0;\n  border-color: #a6a6a6;\n  -webkit-appearance: menulist!important;\n  -moz-appearance: menulist!important;\n  appearance: menulist!important;\n  border-width: 1px;\n}\n.form-label {\n  font-family: \"Muli\", 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\/* | *\/\n@media screen and (max-width: 480px), screen and (max-device-width: 768px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {\n  .jotform-form {\n    padding: 0;\n  }\n  .form-all {\n    border: 0;\n    width: 100% !important;\n    max-width: initial;\n  }\n  .form-sub-label-container {\n    width: 100%;\n    margin: 0;\n  }\n  .form-input {\n    width: 100%;\n  }\n  .form-label {\n    width: 100%!important;\n  }\n  .form-line {\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-input,\n  .form-input-wide,\n  .form-textarea,\n  .form-textbox,\n  .form-dropdown {\n    max-width: initial !important;\n  }\n  div.form-header-group {\n    padding: 10px 36px !important;\n    padding-left: 5% !important;\n    padding-right: 5% !important;\n    margin: 0 0px 2% !important;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  [data-type=\"control_button\"] {\n    margin-bottom: 0 !important;\n  }\n  .form-buttons-wrapper {\n    margin: 0!important;\n  }\n  .form-buttons-wrapper button {\n    width: 100%;\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 input,\n  .form-radio-item input {\n    width: auto;\n  }\n  .form-collapse-table {\n    margin: 0 5%;\n  }\n}\n\/* | *\/\n\n\/*PREFERENCES STYLE*\/\n    .form-all {\n      font-family: Muli, 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: Muli, sans-serif;\n    }\n    .form-all .form-pagebreak-back-container,\n    .form-all .form-pagebreak-next-container {\n      font-family: Muli, sans-serif;\n    }\n    .form-header-group {\n      font-family: Muli, sans-serif;\n    }\n    .form-label {\n      font-family: Muli, sans-serif;\n    }\n  \n    \n  \n    .form-line {\n      margin-top: 12px;\n      margin-bottom: 12px;\n    }\n  \n    .form-all {\n      width: 690px;\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: 150px;\n    }\n  \n    .form-all {\n      font-size: 16px\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: 16px\n    }\n    .form-all .form-pagebreak-back-container,\n    .form-all .form-pagebreak-next-container {\n      font-size: 16px\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    \/* Injected CSS Code *\/\n<\/style>\n\n<!--[if lt IE 9]><script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/flashcanvas.js?3.3.4682\" type=\"text\/javascript\"><\/script><![endif]-->\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jquery-1.8.0.min.js?v=3.3.4682\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jSignature.min.noconflict.js?3.3.4682\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jotform.signaturepad.js?3.3.4682\" type=\"text\/javascript\"><\/script>\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.4682\" 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\n JotForm.calendarMonths = [\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"];\n JotForm.calendarDays = [\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"];\n JotForm.calendarOther = {\"today\":\"Today\"};\n var languageOptions = document.querySelectorAll('#langList li'); \n for(var langIndex = 0; langIndex < languageOptions.length; langIndex++) { \n   languageOptions[langIndex].on('click', function(e) { setTimeout(function(){ JotForm.setCalendar(\"42\", false, {\"days\":{\"monday\":true,\"tuesday\":true,\"wednesday\":true,\"thursday\":true,\"friday\":true,\"saturday\":true,\"sunday\":true},\"future\":true,\"past\":true,\"custom\":false,\"ranges\":false,\"start\":\"\",\"end\":\"\"}); }, 0); });\n } \n JotForm.setCalendar(\"42\", false, {\"days\":{\"monday\":true,\"tuesday\":true,\"wednesday\":true,\"thursday\":true,\"friday\":true,\"saturday\":true,\"sunday\":true},\"future\":true,\"past\":true,\"custom\":false,\"ranges\":false,\"start\":\"\",\"end\":\"\"});\n JotForm.formatDate({date:(new Date()), dateField:$(\"id_\"+42)});\n      JotForm.displayLocalTime(\"input_43_hourSelect\", \"input_43_minuteSelect\",\"input_43_ampm\");\n      setTimeout(function() {\n          $('input_75').hint('ex: 23');\n       }, 20);\n\n JotForm.formatDate({date:(new Date()), dateField:$(\"id_\"+57)});\n\tJotForm.clearFieldOnHide=\"disable\";\n    \/*INIT-END*\/\n});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,{\"name\":\"nabaBv\",\"qid\":\"1\",\"text\":\"NABA BV Report Form\",\"type\":\"control_head\"},{\"name\":\"submit\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"iAm\",\"qid\":\"34\",\"text\":\"I am reporting a\",\"type\":\"control_radio\"},null,null,null,null,{\"name\":\"nameOf\",\"qid\":\"39\",\"text\":\"Name of Reported Person\",\"type\":\"control_fullname\"},{\"name\":\"playerSinglet\",\"qid\":\"40\",\"subLabel\":\"\",\"text\":\"Player Singlet Number\",\"type\":\"control_textbox\"},{\"name\":\"teamName\",\"qid\":\"41\",\"subLabel\":\"\",\"text\":\"Team Name\",\"type\":\"control_textbox\"},{\"name\":\"dateOf\",\"qid\":\"42\",\"text\":\"Date of Match\",\"type\":\"control_datetime\"},{\"name\":\"scheduledMatch\",\"qid\":\"43\",\"text\":\"Scheduled Match Time\",\"type\":\"control_time\"},null,null,null,null,{\"name\":\"isThis\",\"qid\":\"48\",\"text\":\"Is this a minor report and suitable for alternative procedure?\",\"type\":\"control_radio\"},{\"name\":\"reportingReferees\",\"qid\":\"49\",\"text\":\"Reporting Referee&#039;s Name\",\"type\":\"control_fullname\"},{\"name\":\"umpiresName\",\"qid\":\"50\",\"text\":\"Umpire&#039;s Name \/ Non-reporting Referee\",\"type\":\"control_fullname\"},{\"name\":\"nameOf51\",\"qid\":\"51\",\"text\":\"Name of Scorer #1 (optional)\",\"type\":\"control_fullname\"},{\"name\":\"nameOf52\",\"qid\":\"52\",\"text\":\"Name of Scorer #2 (optional)\",\"type\":\"control_fullname\"},{\"name\":\"descriptionOf\",\"qid\":\"53\",\"subLabel\":\"\",\"text\":\"Description of Charges - clearly outline details of report and make sure the appropriate charges are described in the information below.\",\"type\":\"control_textarea\"},{\"name\":\"signatureOf\",\"qid\":\"54\",\"subLabel\":\"\",\"text\":\"Signature of Reporting Referee\",\"type\":\"control_signature\"},{\"name\":\"reportingReferees55\",\"qid\":\"55\",\"subLabel\":\"\",\"text\":\"Reporting Referee&#039;s Email Address (this is not shared with reported parties)\",\"type\":\"control_email\"},{\"name\":\"associationName\",\"qid\":\"56\",\"subLabel\":\"\",\"text\":\"Association Name\",\"type\":\"control_textbox\"},{\"name\":\"date\",\"qid\":\"57\",\"text\":\"Date\",\"type\":\"control_datetime\"},{\"name\":\"venue\",\"qid\":\"58\",\"subLabel\":\"\",\"text\":\"Venue\",\"type\":\"control_textbox\"},{\"name\":\"assault52\",\"qid\":\"59\",\"subLabel\":\"\",\"text\":\"Assault (52*) \",\"type\":\"control_textbox\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"courtNumber\",\"qid\":\"75\",\"subLabel\":\"\",\"text\":\"Court Number\",\"type\":\"control_number\"},{\"name\":\"approximateTime\",\"qid\":\"76\",\"subLabel\":\"E.g. &quot;2nd half 8:56mins remaining&quot;\",\"text\":\"Approximate Time of Incident (for video retrieval) \",\"type\":\"control_textbox\"},{\"name\":\"clickTo77\",\"qid\":\"77\",\"text\":\"The below charges are for individuals reported for behaviour directed at other players, coaches and participants who are not the referees \/ officials.\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"attemptTo78\",\"qid\":\"78\",\"subLabel\":\"\",\"text\":\"Attempt to Elbow (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo\",\"qid\":\"79\",\"subLabel\":\"\",\"text\":\"Attempt to Kick (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo80\",\"qid\":\"80\",\"subLabel\":\"\",\"text\":\"Attempt to Strike (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo81\",\"qid\":\"81\",\"subLabel\":\"\",\"text\":\"Attempt to Trip (10*)\",\"type\":\"control_textbox\"},{\"name\":\"elbowing20\",\"qid\":\"82\",\"subLabel\":\"\",\"text\":\"Elbowing (20*)\",\"type\":\"control_textbox\"},{\"name\":\"kicking20\",\"qid\":\"83\",\"subLabel\":\"\",\"text\":\"Kicking (20*)\",\"type\":\"control_textbox\"},{\"name\":\"obsceneGesture\",\"qid\":\"84\",\"subLabel\":\"\",\"text\":\"Obscene Gesture (10*)\",\"type\":\"control_textbox\"},{\"name\":\"offensiveLanguage\",\"qid\":\"85\",\"subLabel\":\"\",\"text\":\"Offensive Language (10*)\",\"type\":\"control_textbox\"},{\"name\":\"puttingIn\",\"qid\":\"86\",\"subLabel\":\"\",\"text\":\"Putting in Fear (52*)\",\"type\":\"control_textbox\"},{\"name\":\"spitting20\",\"qid\":\"87\",\"subLabel\":\"\",\"text\":\"Spitting (20*)\",\"type\":\"control_textbox\"},{\"name\":\"striking52\",\"qid\":\"88\",\"subLabel\":\"\",\"text\":\"Striking (52*)\",\"type\":\"control_textbox\"},{\"name\":\"threatening52\",\"qid\":\"89\",\"subLabel\":\"\",\"text\":\"Threatening (52*)\",\"type\":\"control_textbox\"},{\"name\":\"tripping10\",\"qid\":\"90\",\"subLabel\":\"\",\"text\":\"Tripping (10*)\",\"type\":\"control_textbox\"},{\"name\":\"chargesAgainst91\",\"qid\":\"91\",\"text\":\"Charges Against A Non-Official\",\"type\":\"control_collapse\"},{\"name\":\"chargesAgainst\",\"qid\":\"92\",\"text\":\"Charges Against A Official \/ Referee\",\"type\":\"control_collapse\"},{\"name\":\"ptheBelow\",\"qid\":\"93\",\"text\":\"The below charges are for individuals reported for behaviour directed at referees or officials.\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"assaultlife\",\"qid\":\"94\",\"subLabel\":\"\",\"text\":\"Assault (Life*) \",\"type\":\"control_textbox\"},{\"name\":\"attemptTo95\",\"qid\":\"95\",\"subLabel\":\"\",\"text\":\"Attempt to Elbow (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo96\",\"qid\":\"96\",\"subLabel\":\"\",\"text\":\"Attempt to Kick (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo97\",\"qid\":\"97\",\"subLabel\":\"\",\"text\":\"Attempt to Strike (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo98\",\"qid\":\"98\",\"subLabel\":\"\",\"text\":\"Attempt to Trip (52*)\",\"type\":\"control_textbox\"},{\"name\":\"elbowinglife\",\"qid\":\"99\",\"subLabel\":\"\",\"text\":\"Elbowing (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"kickinglife\",\"qid\":\"100\",\"subLabel\":\"\",\"text\":\"Kicking (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"obsceneGesture101\",\"qid\":\"101\",\"subLabel\":\"\",\"text\":\"Obscene Gesture (20*)\",\"type\":\"control_textbox\"},{\"name\":\"offensiveLanguage102\",\"qid\":\"102\",\"subLabel\":\"\",\"text\":\"Offensive Language (20*)\",\"type\":\"control_textbox\"},{\"name\":\"puttingIn103\",\"qid\":\"103\",\"subLabel\":\"\",\"text\":\"Putting in Fear (104*)\",\"type\":\"control_textbox\"},{\"name\":\"spitting52\",\"qid\":\"104\",\"subLabel\":\"\",\"text\":\"Spitting (52*)\",\"type\":\"control_textbox\"},{\"name\":\"strikinglife\",\"qid\":\"105\",\"subLabel\":\"\",\"text\":\"Striking (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"threatening104\",\"qid\":\"106\",\"subLabel\":\"\",\"text\":\"Threatening (104*)\",\"type\":\"control_textbox\"},{\"name\":\"trippinglife\",\"qid\":\"107\",\"subLabel\":\"\",\"text\":\"Tripping (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"conductCharges\",\"qid\":\"108\",\"text\":\"Conduct Charges\",\"type\":\"control_collapse\"},{\"name\":\"avoidableContact\",\"qid\":\"109\",\"subLabel\":\"\",\"text\":\"Avoidable Contact With Official (52*)\",\"type\":\"control_textbox\"},{\"name\":\"bringingBasketball\",\"qid\":\"110\",\"subLabel\":\"\",\"text\":\"Bringing Basketball into Disrepute (19*)\",\"type\":\"control_textbox\"},{\"name\":\"causeDamage\",\"qid\":\"111\",\"subLabel\":\"\",\"text\":\"Cause Damage (16*)\",\"type\":\"control_textbox\"},{\"name\":\"causeInjury\",\"qid\":\"112\",\"subLabel\":\"\",\"text\":\"Cause Injury (16*)\",\"type\":\"control_textbox\"},{\"name\":\"cheatinglife\",\"qid\":\"113\",\"subLabel\":\"\",\"text\":\"Cheating (life*)\",\"type\":\"control_textbox\"},{\"name\":\"contempt20\",\"qid\":\"114\",\"subLabel\":\"\",\"text\":\"Contempt (20*)\",\"type\":\"control_textbox\"},{\"name\":\"disputingDecisions\",\"qid\":\"115\",\"subLabel\":\"\",\"text\":\"Disputing Decisions (6*)\",\"type\":\"control_textbox\"},{\"name\":\"endangerWith\",\"qid\":\"116\",\"subLabel\":\"\",\"text\":\"Endanger with Blood, etc. (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"fighting20\",\"qid\":\"117\",\"subLabel\":\"\",\"text\":\"Fighting (20*)\",\"type\":\"control_textbox\"},{\"name\":\"grossBreach\",\"qid\":\"118\",\"subLabel\":\"\",\"text\":\"Gross Breach of Code (6*)\",\"type\":\"control_textbox\"},{\"name\":\"participateWhile\",\"qid\":\"119\",\"subLabel\":\"\",\"text\":\"Participate While Suspended (2-5*)\",\"type\":\"control_textbox\"},{\"name\":\"tunnelling104\",\"qid\":\"120\",\"subLabel\":\"\",\"text\":\"Tunnelling (104*)\",\"type\":\"control_textbox\"},{\"name\":\"unsportsmanlikeBehaviour\",\"qid\":\"121\",\"subLabel\":\"\",\"text\":\"Unsportsmanlike Behaviour (6*)\",\"type\":\"control_textbox\"},null,{\"name\":\"clickTo123\",\"qid\":\"123\",\"text\":\"The below charges are for individuals reported for any behaviour. It is recommended referees consider the charges of \\\"Bringing Basketball into Disrepute\\\", \\\"Gross Breach of Code\\\" and \\\"Unsportsmanlike Behaviour\\\" for all reports.&nbsp;\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"reportDetails\",\"qid\":\"124\",\"text\":\"Report Details\",\"type\":\"control_collapse\"},{\"name\":\"alternativeProcedure\",\"qid\":\"125\",\"text\":\"Alternative Procedure - Major or Minor Report\",\"type\":\"control_collapse\"},{\"name\":\"refereesAnd\",\"qid\":\"126\",\"text\":\"Referees and Official Details\",\"type\":\"control_collapse\"},{\"name\":\"descriptionOf127\",\"qid\":\"127\",\"text\":\"Description of Charges\",\"type\":\"control_collapse\"},null,{\"name\":\"clickTo\",\"qid\":\"129\",\"text\":\"When writing your description, please read the following examples to help you formulate yours:\\nE.g. With 9mins 28secs to go in the 1st half, number 23 from Team A (John Doe) was pushed by number 10 from Team B (Tom Player). In response to this John Doe swore at Tom Player and attempted to hit Tom with a closed fist. Players from both teams then scuffled and the teams were ordered to their bench. Both John Doe and Tom Player were disqualified from the stadium.\",\"type\":\"control_text\"},{\"name\":\"submitForm\",\"qid\":\"130\",\"text\":\"Submit Form\",\"type\":\"control_collapse\"},{\"name\":\"doYou\",\"qid\":\"131\",\"text\":\"Do you require video footage from stadium cameras?\",\"type\":\"control_radio\"},{\"name\":\"clickTo132\",\"qid\":\"132\",\"text\":\"Please seek advice from your supervisor or Referee Advisor before indicating if this should be a minor or major report.&nbsp;\",\"type\":\"control_text\"},{\"name\":\"clickTo133\",\"qid\":\"133\",\"text\":\"THIS FORM IS TO BE COMPLETED BY REFEREES OR SUPERVISORS ONLY WHO WISH TO LODGE A BASKETBALL VICTORIA REPORT.\\nFor any feedback or complaints regarding referees, please email referees@nunawadingbasketball.com.au&nbsp;\",\"type\":\"control_text\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,{\"name\":\"nabaBv\",\"qid\":\"1\",\"text\":\"NABA BV Report Form\",\"type\":\"control_head\"},{\"name\":\"submit\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"iAm\",\"qid\":\"34\",\"text\":\"I am reporting a\",\"type\":\"control_radio\"},null,null,null,null,{\"name\":\"nameOf\",\"qid\":\"39\",\"text\":\"Name of Reported Person\",\"type\":\"control_fullname\"},{\"name\":\"playerSinglet\",\"qid\":\"40\",\"subLabel\":\"\",\"text\":\"Player Singlet Number\",\"type\":\"control_textbox\"},{\"name\":\"teamName\",\"qid\":\"41\",\"subLabel\":\"\",\"text\":\"Team Name\",\"type\":\"control_textbox\"},{\"name\":\"dateOf\",\"qid\":\"42\",\"text\":\"Date of Match\",\"type\":\"control_datetime\"},{\"name\":\"scheduledMatch\",\"qid\":\"43\",\"text\":\"Scheduled Match Time\",\"type\":\"control_time\"},null,null,null,null,{\"name\":\"isThis\",\"qid\":\"48\",\"text\":\"Is this a minor report and suitable for alternative procedure?\",\"type\":\"control_radio\"},{\"name\":\"reportingReferees\",\"qid\":\"49\",\"text\":\"Reporting Referee&#039;s Name\",\"type\":\"control_fullname\"},{\"name\":\"umpiresName\",\"qid\":\"50\",\"text\":\"Umpire&#039;s Name \/ Non-reporting Referee\",\"type\":\"control_fullname\"},{\"name\":\"nameOf51\",\"qid\":\"51\",\"text\":\"Name of Scorer #1 (optional)\",\"type\":\"control_fullname\"},{\"name\":\"nameOf52\",\"qid\":\"52\",\"text\":\"Name of Scorer #2 (optional)\",\"type\":\"control_fullname\"},{\"name\":\"descriptionOf\",\"qid\":\"53\",\"subLabel\":\"\",\"text\":\"Description of Charges - clearly outline details of report and make sure the appropriate charges are described in the information below.\",\"type\":\"control_textarea\"},{\"name\":\"signatureOf\",\"qid\":\"54\",\"subLabel\":\"\",\"text\":\"Signature of Reporting Referee\",\"type\":\"control_signature\"},{\"name\":\"reportingReferees55\",\"qid\":\"55\",\"subLabel\":\"\",\"text\":\"Reporting Referee&#039;s Email Address (this is not shared with reported parties)\",\"type\":\"control_email\"},{\"name\":\"associationName\",\"qid\":\"56\",\"subLabel\":\"\",\"text\":\"Association Name\",\"type\":\"control_textbox\"},{\"name\":\"date\",\"qid\":\"57\",\"text\":\"Date\",\"type\":\"control_datetime\"},{\"name\":\"venue\",\"qid\":\"58\",\"subLabel\":\"\",\"text\":\"Venue\",\"type\":\"control_textbox\"},{\"name\":\"assault52\",\"qid\":\"59\",\"subLabel\":\"\",\"text\":\"Assault (52*) \",\"type\":\"control_textbox\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"courtNumber\",\"qid\":\"75\",\"subLabel\":\"\",\"text\":\"Court Number\",\"type\":\"control_number\"},{\"name\":\"approximateTime\",\"qid\":\"76\",\"subLabel\":\"E.g. &quot;2nd half 8:56mins remaining&quot;\",\"text\":\"Approximate Time of Incident (for video retrieval) \",\"type\":\"control_textbox\"},{\"name\":\"clickTo77\",\"qid\":\"77\",\"text\":\"The below charges are for individuals reported for behaviour directed at other players, coaches and participants who are not the referees \/ officials.\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"attemptTo78\",\"qid\":\"78\",\"subLabel\":\"\",\"text\":\"Attempt to Elbow (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo\",\"qid\":\"79\",\"subLabel\":\"\",\"text\":\"Attempt to Kick (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo80\",\"qid\":\"80\",\"subLabel\":\"\",\"text\":\"Attempt to Strike (10*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo81\",\"qid\":\"81\",\"subLabel\":\"\",\"text\":\"Attempt to Trip (10*)\",\"type\":\"control_textbox\"},{\"name\":\"elbowing20\",\"qid\":\"82\",\"subLabel\":\"\",\"text\":\"Elbowing (20*)\",\"type\":\"control_textbox\"},{\"name\":\"kicking20\",\"qid\":\"83\",\"subLabel\":\"\",\"text\":\"Kicking (20*)\",\"type\":\"control_textbox\"},{\"name\":\"obsceneGesture\",\"qid\":\"84\",\"subLabel\":\"\",\"text\":\"Obscene Gesture (10*)\",\"type\":\"control_textbox\"},{\"name\":\"offensiveLanguage\",\"qid\":\"85\",\"subLabel\":\"\",\"text\":\"Offensive Language (10*)\",\"type\":\"control_textbox\"},{\"name\":\"puttingIn\",\"qid\":\"86\",\"subLabel\":\"\",\"text\":\"Putting in Fear (52*)\",\"type\":\"control_textbox\"},{\"name\":\"spitting20\",\"qid\":\"87\",\"subLabel\":\"\",\"text\":\"Spitting (20*)\",\"type\":\"control_textbox\"},{\"name\":\"striking52\",\"qid\":\"88\",\"subLabel\":\"\",\"text\":\"Striking (52*)\",\"type\":\"control_textbox\"},{\"name\":\"threatening52\",\"qid\":\"89\",\"subLabel\":\"\",\"text\":\"Threatening (52*)\",\"type\":\"control_textbox\"},{\"name\":\"tripping10\",\"qid\":\"90\",\"subLabel\":\"\",\"text\":\"Tripping (10*)\",\"type\":\"control_textbox\"},{\"name\":\"chargesAgainst91\",\"qid\":\"91\",\"text\":\"Charges Against A Non-Official\",\"type\":\"control_collapse\"},{\"name\":\"chargesAgainst\",\"qid\":\"92\",\"text\":\"Charges Against A Official \/ Referee\",\"type\":\"control_collapse\"},{\"name\":\"ptheBelow\",\"qid\":\"93\",\"text\":\"The below charges are for individuals reported for behaviour directed at referees or officials.\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"assaultlife\",\"qid\":\"94\",\"subLabel\":\"\",\"text\":\"Assault (Life*) \",\"type\":\"control_textbox\"},{\"name\":\"attemptTo95\",\"qid\":\"95\",\"subLabel\":\"\",\"text\":\"Attempt to Elbow (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo96\",\"qid\":\"96\",\"subLabel\":\"\",\"text\":\"Attempt to Kick (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo97\",\"qid\":\"97\",\"subLabel\":\"\",\"text\":\"Attempt to Strike (52*)\",\"type\":\"control_textbox\"},{\"name\":\"attemptTo98\",\"qid\":\"98\",\"subLabel\":\"\",\"text\":\"Attempt to Trip (52*)\",\"type\":\"control_textbox\"},{\"name\":\"elbowinglife\",\"qid\":\"99\",\"subLabel\":\"\",\"text\":\"Elbowing (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"kickinglife\",\"qid\":\"100\",\"subLabel\":\"\",\"text\":\"Kicking (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"obsceneGesture101\",\"qid\":\"101\",\"subLabel\":\"\",\"text\":\"Obscene Gesture (20*)\",\"type\":\"control_textbox\"},{\"name\":\"offensiveLanguage102\",\"qid\":\"102\",\"subLabel\":\"\",\"text\":\"Offensive Language (20*)\",\"type\":\"control_textbox\"},{\"name\":\"puttingIn103\",\"qid\":\"103\",\"subLabel\":\"\",\"text\":\"Putting in Fear (104*)\",\"type\":\"control_textbox\"},{\"name\":\"spitting52\",\"qid\":\"104\",\"subLabel\":\"\",\"text\":\"Spitting (52*)\",\"type\":\"control_textbox\"},{\"name\":\"strikinglife\",\"qid\":\"105\",\"subLabel\":\"\",\"text\":\"Striking (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"threatening104\",\"qid\":\"106\",\"subLabel\":\"\",\"text\":\"Threatening (104*)\",\"type\":\"control_textbox\"},{\"name\":\"trippinglife\",\"qid\":\"107\",\"subLabel\":\"\",\"text\":\"Tripping (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"conductCharges\",\"qid\":\"108\",\"text\":\"Conduct Charges\",\"type\":\"control_collapse\"},{\"name\":\"avoidableContact\",\"qid\":\"109\",\"subLabel\":\"\",\"text\":\"Avoidable Contact With Official (52*)\",\"type\":\"control_textbox\"},{\"name\":\"bringingBasketball\",\"qid\":\"110\",\"subLabel\":\"\",\"text\":\"Bringing Basketball into Disrepute (19*)\",\"type\":\"control_textbox\"},{\"name\":\"causeDamage\",\"qid\":\"111\",\"subLabel\":\"\",\"text\":\"Cause Damage (16*)\",\"type\":\"control_textbox\"},{\"name\":\"causeInjury\",\"qid\":\"112\",\"subLabel\":\"\",\"text\":\"Cause Injury (16*)\",\"type\":\"control_textbox\"},{\"name\":\"cheatinglife\",\"qid\":\"113\",\"subLabel\":\"\",\"text\":\"Cheating (life*)\",\"type\":\"control_textbox\"},{\"name\":\"contempt20\",\"qid\":\"114\",\"subLabel\":\"\",\"text\":\"Contempt (20*)\",\"type\":\"control_textbox\"},{\"name\":\"disputingDecisions\",\"qid\":\"115\",\"subLabel\":\"\",\"text\":\"Disputing Decisions (6*)\",\"type\":\"control_textbox\"},{\"name\":\"endangerWith\",\"qid\":\"116\",\"subLabel\":\"\",\"text\":\"Endanger with Blood, etc. (Life*)\",\"type\":\"control_textbox\"},{\"name\":\"fighting20\",\"qid\":\"117\",\"subLabel\":\"\",\"text\":\"Fighting (20*)\",\"type\":\"control_textbox\"},{\"name\":\"grossBreach\",\"qid\":\"118\",\"subLabel\":\"\",\"text\":\"Gross Breach of Code (6*)\",\"type\":\"control_textbox\"},{\"name\":\"participateWhile\",\"qid\":\"119\",\"subLabel\":\"\",\"text\":\"Participate While Suspended (2-5*)\",\"type\":\"control_textbox\"},{\"name\":\"tunnelling104\",\"qid\":\"120\",\"subLabel\":\"\",\"text\":\"Tunnelling (104*)\",\"type\":\"control_textbox\"},{\"name\":\"unsportsmanlikeBehaviour\",\"qid\":\"121\",\"subLabel\":\"\",\"text\":\"Unsportsmanlike Behaviour (6*)\",\"type\":\"control_textbox\"},null,{\"name\":\"clickTo123\",\"qid\":\"123\",\"text\":\"The below charges are for individuals reported for any behaviour. It is recommended referees consider the charges of \\\"Bringing Basketball into Disrepute\\\", \\\"Gross Breach of Code\\\" and \\\"Unsportsmanlike Behaviour\\\" for all reports.&nbsp;\\nPlace an \\\"X\\\" in each box next to each relevant charge below.&nbsp;\\nYou can read the BV description of charges here.\\n(Maximum weeks penalty is displayed in brackets next to each charge).\",\"type\":\"control_text\"},{\"name\":\"reportDetails\",\"qid\":\"124\",\"text\":\"Report Details\",\"type\":\"control_collapse\"},{\"name\":\"alternativeProcedure\",\"qid\":\"125\",\"text\":\"Alternative Procedure - Major or Minor Report\",\"type\":\"control_collapse\"},{\"name\":\"refereesAnd\",\"qid\":\"126\",\"text\":\"Referees and Official Details\",\"type\":\"control_collapse\"},{\"name\":\"descriptionOf127\",\"qid\":\"127\",\"text\":\"Description of Charges\",\"type\":\"control_collapse\"},null,{\"name\":\"clickTo\",\"qid\":\"129\",\"text\":\"When writing your description, please read the following examples to help you formulate yours:\\nE.g. With 9mins 28secs to go in the 1st half, number 23 from Team A (John Doe) was pushed by number 10 from Team B (Tom Player). In response to this John Doe swore at Tom Player and attempted to hit Tom with a closed fist. Players from both teams then scuffled and the teams were ordered to their bench. Both John Doe and Tom Player were disqualified from the stadium.\",\"type\":\"control_text\"},{\"name\":\"submitForm\",\"qid\":\"130\",\"text\":\"Submit Form\",\"type\":\"control_collapse\"},{\"name\":\"doYou\",\"qid\":\"131\",\"text\":\"Do you require video footage from stadium cameras?\",\"type\":\"control_radio\"},{\"name\":\"clickTo132\",\"qid\":\"132\",\"text\":\"Please seek advice from your supervisor or Referee Advisor before indicating if this should be a minor or major report.&nbsp;\",\"type\":\"control_text\"},{\"name\":\"clickTo133\",\"qid\":\"133\",\"text\":\"THIS FORM IS TO BE COMPLETED BY REFEREES OR SUPERVISORS ONLY WHO WISH TO LODGE A BASKETBALL VICTORIA REPORT.\\nFor any feedback or complaints regarding referees, please email referees@nunawadingbasketball.com.au&nbsp;\",\"type\":\"control_text\"}]);}, 20); \n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotform.co\/submit\/80098152910858\/\" method=\"post\" name=\"form_80098152910858\" id=\"80098152910858\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"80098152910858\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section page-section\">\n      <li id=\"cid_1\" class=\"form-input-wide\" data-type=\"control_head\">\n        <div class=\"form-header-group \">\n          <div class=\"header-text httal htvam\">\n            <h2 id=\"header_1\" class=\"form-header\" data-component=\"header\">\n              NABA BV Report Form\n            <\/h2>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_133\">\n        <div id=\"cid_133\" class=\"form-input-wide\">\n          <div id=\"text_133\" class=\"form-html\" data-component=\"text\">\n            <p>THIS FORM IS TO BE COMPLETED BY REFEREES OR SUPERVISORS ONLY WHO WISH TO LODGE A BASKETBALL VICTORIA REPORT.<\/p>\n            <p>For any feedback or complaints regarding referees, please email <a href=\"mailto:referees@nunawadingbasketball.com.au\" target=\"_blank\">referees@nunawadingbasketball.com.au<\/a> <\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_124\">\n        <li id=\"cid_124\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_124\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_124\">\n              Report Details\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_radio\" id=\"id_34\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_34\" for=\"input_34\">\n            I am reporting a\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_34\" class=\"form-input jf-required\">\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 validate[required]\" id=\"input_34_0\" name=\"q34_iAm\" value=\"Player\" required=\"\" \/>\n                <label id=\"label_input_34_0\" for=\"input_34_0\"> Player <\/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 validate[required]\" id=\"input_34_1\" name=\"q34_iAm\" value=\"Team\" required=\"\" \/>\n                <label id=\"label_input_34_1\" for=\"input_34_1\"> Team <\/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 validate[required]\" id=\"input_34_2\" name=\"q34_iAm\" value=\"Coach\" required=\"\" \/>\n                <label id=\"label_input_34_2\" for=\"input_34_2\"> Coach <\/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 validate[required]\" id=\"input_34_3\" name=\"q34_iAm\" value=\"Spectator\" required=\"\" \/>\n                <label id=\"label_input_34_3\" for=\"input_34_3\"> Spectator <\/label>\n              <\/span>\n              <span class=\"form-radio-item\" style=\"clear:left;\">\n                <label style=\"display:none;\" for=\"other_34\"> Other option <\/label>\n                <input type=\"radio\" class=\"form-radio-other form-radio validate[required]\" name=\"q34_iAm\" id=\"other_34\" value=\"other\" \/>\n                <input type=\"text\" class=\"form-radio-other-input form-textbox\" name=\"q34_iAm[other]\" data-otherhint=\"Other\" placeholder=\"Other\" size=\"15\" id=\"input_34\" \/>\n                <br\/>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_fullname\" id=\"id_39\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_39\" for=\"first_39\"> Name of Reported Person <\/label>\n          <div id=\"cid_39\" class=\"form-input\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input type=\"text\" id=\"first_39\" name=\"q39_nameOf[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n                <label class=\"form-sub-label\" for=\"first_39\" 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_39\" name=\"q39_nameOf[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n                <label class=\"form-sub-label\" for=\"last_39\" 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_textbox\" id=\"id_40\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_40\" for=\"input_40\"> Player Singlet Number <\/label>\n          <div id=\"cid_40\" class=\"form-input\">\n            <input type=\"text\" id=\"input_40\" name=\"q40_playerSinglet\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_41\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_41\" for=\"input_41\">\n            Team Name\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_41\" class=\"form-input jf-required\">\n            <input type=\"text\" id=\"input_41\" name=\"q41_teamName\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" data-component=\"textbox\" required=\"\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_datetime\" id=\"id_42\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_42\" for=\"month_42\">\n            Date of Match\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_42\" class=\"form-input jf-required\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input class=\"form-textbox validate[required, limitDate]\" id=\"month_42\" name=\"q42_dateOf[month]\" type=\"tel\" size=\"2\" data-maxlength=\"2\" value=\"02\" required=\"\" \/>\n                <span class=\"date-separate\">\n                  \u00a0-\n                <\/span>\n                <label class=\"form-sub-label\" for=\"month_42\" id=\"sublabel_month\" style=\"min-height:13px;\"> Month <\/label>\n              <\/span>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input class=\"currentDate form-textbox validate[required, limitDate]\" id=\"day_42\" name=\"q42_dateOf[day]\" type=\"tel\" size=\"2\" data-maxlength=\"2\" value=\"15\" required=\"\" \/>\n                <span class=\"date-separate\">\n                  \u00a0-\n                <\/span>\n                <label class=\"form-sub-label\" for=\"day_42\" id=\"sublabel_day\" style=\"min-height:13px;\"> Day <\/label>\n              <\/span>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input class=\"form-textbox validate[required, limitDate]\" id=\"year_42\" name=\"q42_dateOf[year]\" type=\"tel\" size=\"4\" data-maxlength=\"4\" value=\"2018\" required=\"\" \/>\n                <label class=\"form-sub-label\" for=\"year_42\" id=\"sublabel_year\" style=\"min-height:13px;\"> Year <\/label>\n              <\/span>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <img class=\"showAutoCalendar\" alt=\"Pick a Date\" id=\"input_42_pick\" src=\"https:\/\/cdn.jotfor.ms\/images\/calendar.png\" style=\"vertical-align:middle;\" data-component=\"datetime\" \/>\n                <label class=\"form-sub-label\" for=\"input_42_pick\" style=\"min-height:13px;\">  <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_time\" id=\"id_43\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_43\" for=\"input_43_hourSelect\">\n            Scheduled Match Time\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_43\" class=\"form-input jf-required\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <select class=\"currentTime time-dropdown form-dropdown validate[required]\" id=\"input_43_hourSelect\" name=\"q43_scheduledMatch[hourSelect]\" data-component=\"time-hour\" required=\"\">\n                  <option>  <\/option>\n                  <option value=\"1\"> 1 <\/option>\n                  <option value=\"2\"> 2 <\/option>\n                  <option value=\"3\"> 3 <\/option>\n                  <option value=\"4\"> 4 <\/option>\n                  <option value=\"5\"> 5 <\/option>\n                  <option selected=\"\" value=\"6\"> 6 <\/option>\n                  <option value=\"7\"> 7 <\/option>\n                  <option value=\"8\"> 8 <\/option>\n                  <option value=\"9\"> 9 <\/option>\n                  <option value=\"10\"> 10 <\/option>\n                  <option value=\"11\"> 11 <\/option>\n                  <option value=\"12\"> 12 <\/option>\n                <\/select>\n                <span class=\"date-separate\">\n                  \u00a0:\n                <\/span>\n                <label class=\"form-sub-label\" for=\"input_43_hourSelect\" id=\"sublabel_hour\" style=\"min-height:13px;\"> Hour <\/label>\n              <\/span>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <select class=\"time-dropdown form-dropdown validate[required]\" id=\"input_43_minuteSelect\" name=\"q43_scheduledMatch[minuteSelect]\" data-component=\"time-minute\" required=\"\">\n                  <option>  <\/option>\n                  <option value=\"00\"> 00 <\/option>\n                  <option value=\"05\"> 05 <\/option>\n                  <option value=\"10\"> 10 <\/option>\n                  <option value=\"15\"> 15 <\/option>\n                  <option value=\"20\"> 20 <\/option>\n                  <option value=\"25\"> 25 <\/option>\n                  <option value=\"30\"> 30 <\/option>\n                  <option value=\"35\"> 35 <\/option>\n                  <option value=\"40\"> 40 <\/option>\n                  <option value=\"45\"> 45 <\/option>\n                  <option value=\"50\"> 50 <\/option>\n                  <option selected=\"\" value=\"55\"> 55 <\/option>\n                <\/select>\n                <label class=\"form-sub-label\" for=\"input_43_minuteSelect\" id=\"sublabel_minutes\" style=\"min-height:13px;\"> Minutes <\/label>\n              <\/span>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <select class=\"time-dropdown form-dropdown validate[required]\" id=\"input_43_ampm\" name=\"q43_scheduledMatch[ampm]\" data-component=\"time-ampm\" required=\"\">\n                  <option selected=\"\" value=\"AM\"> AM <\/option>\n                  <option value=\"PM\"> PM <\/option>\n                <\/select>\n                <label class=\"form-sub-label\" for=\"input_43_ampm\" style=\"min-height:13px;\">  <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_56\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_56\" for=\"input_56\">\n            Association Name\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_56\" class=\"form-input jf-required\">\n            <input type=\"text\" id=\"input_56\" name=\"q56_associationName\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"Nunawading\" data-component=\"textbox\" required=\"\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_58\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_58\" for=\"input_58\">\n            Venue\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_58\" class=\"form-input jf-required\">\n            <input type=\"text\" id=\"input_58\" name=\"q58_venue\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"Nunawading Stadium\" data-component=\"textbox\" required=\"\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_number\" id=\"id_75\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_75\" for=\"input_75\">\n            Court Number\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_75\" class=\"form-input jf-required\">\n            <input type=\"number\" id=\"input_75\" name=\"q75_courtNumber\" data-type=\"input-number\" class=\" form-number-input form-textbox validate[required]\" style=\"width:60px;\" size=\"5\" value=\"\" placeholder=\"ex: 23\" data-component=\"number\" required=\"\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_radio\" id=\"id_131\">\n          <label class=\"form-label form-label-top\" id=\"label_131\" for=\"input_131\"> Do you require video footage from stadium cameras? <\/label>\n          <div id=\"cid_131\" 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_131_0\" name=\"q131_doYou\" value=\"No\" \/>\n                <label id=\"label_input_131_0\" for=\"input_131_0\"> No <\/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_131_1\" name=\"q131_doYou\" value=\"Yes\" \/>\n                <label id=\"label_input_131_1\" for=\"input_131_1\"> Yes <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_76\">\n          <label class=\"form-label form-label-top\" id=\"label_76\" for=\"input_76\"> Approximate Time of Incident (for video retrieval) <\/label>\n          <div id=\"cid_76\" class=\"form-input-wide\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"input_76\" name=\"q76_approximateTime\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" data-component=\"textbox\" \/>\n              <label class=\"form-sub-label\" for=\"input_76\" style=\"min-height:13px;\"> E.g. &quot;2nd half 8:56mins remaining&quot; <\/label>\n            <\/span>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_91\">\n        <li id=\"cid_91\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_91\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_91\">\n              Charges Against A Non-Official\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_text\" id=\"id_77\">\n          <div id=\"cid_77\" class=\"form-input-wide\">\n            <div id=\"text_77\" class=\"form-html\" data-component=\"text\">\n              <p>The below charges are for individuals reported for behaviour directed at other players, coaches and participants who are not the referees \/ officials.<\/p>\n              <p>Place an &quot;X&quot; in each box next to each relevant charge below. <\/p>\n              <p>You can <a href=\"https:\/\/drive.google.com\/file\/d\/1zw7BiwOahQo6gzOyuHsNOkF9dS5fBSuB\/view?usp=sharing\" target=\"_blank\">read the BV description of charges here<\/a>.<\/p>\n              <p>(Maximum weeks penalty is displayed in brackets next to each charge).<\/p>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_59\">\n          <label class=\"form-label form-label-left\" id=\"label_59\" for=\"input_59\"> Assault (52*) <\/label>\n          <div id=\"cid_59\" class=\"form-input\">\n            <input type=\"text\" id=\"input_59\" name=\"q59_assault52\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_78\">\n          <label class=\"form-label form-label-left\" id=\"label_78\" for=\"input_78\"> Attempt to Elbow (10*) <\/label>\n          <div id=\"cid_78\" class=\"form-input\">\n            <input type=\"text\" id=\"input_78\" name=\"q78_attemptTo78\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_79\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_79\" for=\"input_79\"> Attempt to Kick (10*) <\/label>\n          <div id=\"cid_79\" class=\"form-input\">\n            <input type=\"text\" id=\"input_79\" name=\"q79_attemptTo\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_80\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_80\" for=\"input_80\"> Attempt to Strike (10*) <\/label>\n          <div id=\"cid_80\" class=\"form-input\">\n            <input type=\"text\" id=\"input_80\" name=\"q80_attemptTo80\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_81\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_81\" for=\"input_81\"> Attempt to Trip (10*) <\/label>\n          <div id=\"cid_81\" class=\"form-input\">\n            <input type=\"text\" id=\"input_81\" name=\"q81_attemptTo81\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_82\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_82\" for=\"input_82\"> Elbowing (20*) <\/label>\n          <div id=\"cid_82\" class=\"form-input\">\n            <input type=\"text\" id=\"input_82\" name=\"q82_elbowing20\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_83\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_83\" for=\"input_83\"> Kicking (20*) <\/label>\n          <div id=\"cid_83\" class=\"form-input\">\n            <input type=\"text\" id=\"input_83\" name=\"q83_kicking20\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_84\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_84\" for=\"input_84\"> Obscene Gesture (10*) <\/label>\n          <div id=\"cid_84\" class=\"form-input\">\n            <input type=\"text\" id=\"input_84\" name=\"q84_obsceneGesture\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_85\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_85\" for=\"input_85\"> Offensive Language (10*) <\/label>\n          <div id=\"cid_85\" class=\"form-input\">\n            <input type=\"text\" id=\"input_85\" name=\"q85_offensiveLanguage\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_86\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_86\" for=\"input_86\"> Putting in Fear (52*) <\/label>\n          <div id=\"cid_86\" class=\"form-input\">\n            <input type=\"text\" id=\"input_86\" name=\"q86_puttingIn\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_87\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_87\" for=\"input_87\"> Spitting (20*) <\/label>\n          <div id=\"cid_87\" class=\"form-input\">\n            <input type=\"text\" id=\"input_87\" name=\"q87_spitting20\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_88\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_88\" for=\"input_88\"> Striking (52*) <\/label>\n          <div id=\"cid_88\" class=\"form-input\">\n            <input type=\"text\" id=\"input_88\" name=\"q88_striking52\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_89\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_89\" for=\"input_89\"> Threatening (52*) <\/label>\n          <div id=\"cid_89\" class=\"form-input\">\n            <input type=\"text\" id=\"input_89\" name=\"q89_threatening52\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_90\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_90\" for=\"input_90\"> Tripping (10*) <\/label>\n          <div id=\"cid_90\" class=\"form-input\">\n            <input type=\"text\" id=\"input_90\" name=\"q90_tripping10\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_92\">\n        <li id=\"cid_92\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_92\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_92\">\n              Charges Against A Official \/ Referee\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_text\" id=\"id_93\">\n          <div id=\"cid_93\" class=\"form-input-wide\">\n            <div id=\"text_93\" class=\"form-html\" data-component=\"text\">\n              <p>The below charges are for individuals reported for behaviour directed at referees or officials.<\/p>\n              <p>Place an &quot;X&quot; in each box next to each relevant charge below. <\/p>\n              <p>You can <a href=\"https:\/\/drive.google.com\/file\/d\/1zw7BiwOahQo6gzOyuHsNOkF9dS5fBSuB\/view?usp=sharing\" target=\"_blank\">read the BV description of charges here<\/a>.<\/p>\n              <p>(Maximum weeks penalty is displayed in brackets next to each charge).<\/p>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_94\">\n          <label class=\"form-label form-label-left\" id=\"label_94\" for=\"input_94\"> Assault (Life*) <\/label>\n          <div id=\"cid_94\" class=\"form-input\">\n            <input type=\"text\" id=\"input_94\" name=\"q94_assaultlife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_95\">\n          <label class=\"form-label form-label-left\" id=\"label_95\" for=\"input_95\"> Attempt to Elbow (52*) <\/label>\n          <div id=\"cid_95\" class=\"form-input\">\n            <input type=\"text\" id=\"input_95\" name=\"q95_attemptTo95\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_96\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_96\" for=\"input_96\"> Attempt to Kick (52*) <\/label>\n          <div id=\"cid_96\" class=\"form-input\">\n            <input type=\"text\" id=\"input_96\" name=\"q96_attemptTo96\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_97\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_97\" for=\"input_97\"> Attempt to Strike (52*) <\/label>\n          <div id=\"cid_97\" class=\"form-input\">\n            <input type=\"text\" id=\"input_97\" name=\"q97_attemptTo97\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_98\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_98\" for=\"input_98\"> Attempt to Trip (52*) <\/label>\n          <div id=\"cid_98\" class=\"form-input\">\n            <input type=\"text\" id=\"input_98\" name=\"q98_attemptTo98\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_99\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_99\" for=\"input_99\"> Elbowing (Life*) <\/label>\n          <div id=\"cid_99\" class=\"form-input\">\n            <input type=\"text\" id=\"input_99\" name=\"q99_elbowinglife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_100\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_100\" for=\"input_100\"> Kicking (Life*) <\/label>\n          <div id=\"cid_100\" class=\"form-input\">\n            <input type=\"text\" id=\"input_100\" name=\"q100_kickinglife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_101\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_101\" for=\"input_101\"> Obscene Gesture (20*) <\/label>\n          <div id=\"cid_101\" class=\"form-input\">\n            <input type=\"text\" id=\"input_101\" name=\"q101_obsceneGesture101\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_102\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_102\" for=\"input_102\"> Offensive Language (20*) <\/label>\n          <div id=\"cid_102\" class=\"form-input\">\n            <input type=\"text\" id=\"input_102\" name=\"q102_offensiveLanguage102\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_103\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_103\" for=\"input_103\"> Putting in Fear (104*) <\/label>\n          <div id=\"cid_103\" class=\"form-input\">\n            <input type=\"text\" id=\"input_103\" name=\"q103_puttingIn103\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_104\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_104\" for=\"input_104\"> Spitting (52*) <\/label>\n          <div id=\"cid_104\" class=\"form-input\">\n            <input type=\"text\" id=\"input_104\" name=\"q104_spitting52\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_105\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_105\" for=\"input_105\"> Striking (Life*) <\/label>\n          <div id=\"cid_105\" class=\"form-input\">\n            <input type=\"text\" id=\"input_105\" name=\"q105_strikinglife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_106\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_106\" for=\"input_106\"> Threatening (104*) <\/label>\n          <div id=\"cid_106\" class=\"form-input\">\n            <input type=\"text\" id=\"input_106\" name=\"q106_threatening104\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_107\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_107\" for=\"input_107\"> Tripping (Life*) <\/label>\n          <div id=\"cid_107\" class=\"form-input\">\n            <input type=\"text\" id=\"input_107\" name=\"q107_trippinglife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_108\">\n        <li id=\"cid_108\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_108\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_108\">\n              Conduct Charges\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_text\" id=\"id_123\">\n          <div id=\"cid_123\" class=\"form-input-wide\">\n            <div id=\"text_123\" class=\"form-html\" data-component=\"text\">\n              <p>The below charges are for individuals reported for any behaviour. It is recommended referees consider the charges of &quot;Bringing Basketball into Disrepute&quot;, &quot;Gross Breach of Code&quot; and &quot;Unsportsmanlike Behaviour&quot; for all reports. <\/p>\n              <p>Place an &quot;X&quot; in each box next to each relevant charge below. <\/p>\n              <p>You can <a href=\"https:\/\/drive.google.com\/file\/d\/1zw7BiwOahQo6gzOyuHsNOkF9dS5fBSuB\/view?usp=sharing\" target=\"_blank\">read the BV description of charges here<\/a>.<\/p>\n              <p>(Maximum weeks penalty is displayed in brackets next to each charge).<\/p>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_109\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_109\" for=\"input_109\"> Avoidable Contact With Official (52*) <\/label>\n          <div id=\"cid_109\" class=\"form-input\">\n            <input type=\"text\" id=\"input_109\" name=\"q109_avoidableContact\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_110\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_110\" for=\"input_110\"> Bringing Basketball into Disrepute (19*) <\/label>\n          <div id=\"cid_110\" class=\"form-input\">\n            <input type=\"text\" id=\"input_110\" name=\"q110_bringingBasketball\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_111\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_111\" for=\"input_111\"> Cause Damage (16*) <\/label>\n          <div id=\"cid_111\" class=\"form-input\">\n            <input type=\"text\" id=\"input_111\" name=\"q111_causeDamage\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_112\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_112\" for=\"input_112\"> Cause Injury (16*) <\/label>\n          <div id=\"cid_112\" class=\"form-input\">\n            <input type=\"text\" id=\"input_112\" name=\"q112_causeInjury\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_113\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_113\" for=\"input_113\"> Cheating (life*) <\/label>\n          <div id=\"cid_113\" class=\"form-input\">\n            <input type=\"text\" id=\"input_113\" name=\"q113_cheatinglife\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_114\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_114\" for=\"input_114\"> Contempt (20*) <\/label>\n          <div id=\"cid_114\" class=\"form-input\">\n            <input type=\"text\" id=\"input_114\" name=\"q114_contempt20\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_115\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_115\" for=\"input_115\"> Disputing Decisions (6*) <\/label>\n          <div id=\"cid_115\" class=\"form-input\">\n            <input type=\"text\" id=\"input_115\" name=\"q115_disputingDecisions\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_116\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_116\" for=\"input_116\"> Endanger with Blood, etc. (Life*) <\/label>\n          <div id=\"cid_116\" class=\"form-input\">\n            <input type=\"text\" id=\"input_116\" name=\"q116_endangerWith\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_117\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_117\" for=\"input_117\"> Fighting (20*) <\/label>\n          <div id=\"cid_117\" class=\"form-input\">\n            <input type=\"text\" id=\"input_117\" name=\"q117_fighting20\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_118\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_118\" for=\"input_118\"> Gross Breach of Code (6*) <\/label>\n          <div id=\"cid_118\" class=\"form-input\">\n            <input type=\"text\" id=\"input_118\" name=\"q118_grossBreach\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_119\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_119\" for=\"input_119\"> Participate While Suspended (2-5*) <\/label>\n          <div id=\"cid_119\" class=\"form-input\">\n            <input type=\"text\" id=\"input_119\" name=\"q119_participateWhile\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_120\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_120\" for=\"input_120\"> Tunnelling (104*) <\/label>\n          <div id=\"cid_120\" class=\"form-input\">\n            <input type=\"text\" id=\"input_120\" name=\"q120_tunnelling104\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_121\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_121\" for=\"input_121\"> Unsportsmanlike Behaviour (6*) <\/label>\n          <div id=\"cid_121\" class=\"form-input\">\n            <input type=\"text\" id=\"input_121\" name=\"q121_unsportsmanlikeBehaviour\" data-type=\"input-textbox\" class=\"form-textbox validate[Alphabetic]\" size=\"1\" value=\"\" maxlength=\"1\" data-component=\"textbox\" \/>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_125\">\n        <li id=\"cid_125\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_125\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_125\">\n              Alternative Procedure - Major or Minor Report\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_text\" id=\"id_132\">\n          <div id=\"cid_132\" class=\"form-input-wide\">\n            <div id=\"text_132\" class=\"form-html\" data-component=\"text\">\n              <p>Please seek advice from your supervisor or Referee Advisor before indicating if this should be a minor or major report. <\/p>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_radio\" id=\"id_48\">\n          <label class=\"form-label form-label-top\" id=\"label_48\" for=\"input_48\">\n            Is this a minor report and suitable for alternative procedure?\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_48\" class=\"form-input-wide jf-required\">\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 validate[required]\" id=\"input_48_0\" name=\"q48_isThis\" value=\"Yes, this is a minor report with less than 20 weeks maximum possible penalty and does not require a tribunal hearing\" required=\"\" \/>\n                <label id=\"label_input_48_0\" for=\"input_48_0\"> Yes, this is a minor report with less than 20 weeks maximum possible penalty and does not require a tribunal hearing <\/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 validate[required]\" id=\"input_48_1\" name=\"q48_isThis\" value=\"No, this is a major report and requires a tribunal hearing\" required=\"\" \/>\n                <label id=\"label_input_48_1\" for=\"input_48_1\"> No, this is a major report and requires a tribunal hearing <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_127\">\n        <li id=\"cid_127\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_127\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_127\">\n              Description of Charges\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_text\" id=\"id_129\">\n          <div id=\"cid_129\" class=\"form-input-wide\">\n            <div id=\"text_129\" class=\"form-html\" data-component=\"text\">\n              <p>When writing your description, please read the following examples to help you formulate yours:<\/p>\n              <p>E.g. With 9mins 28secs to go in the 1st half, number 23 from Team A (John Doe) was pushed by number 10 from Team B (Tom Player). In response to this John Doe swore at Tom Player and attempted to hit Tom with a closed fist. Players from both teams then scuffled and the teams were ordered to their bench. Both John Doe and Tom Player were disqualified from the stadium.<\/p>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_textarea\" id=\"id_53\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_53\" for=\"input_53\">\n            Description of Charges - clearly outline details of report and make sure the appropriate charges are described in the information below.\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_53\" class=\"form-input jf-required\">\n            <textarea id=\"input_53\" class=\"form-textarea validate[required]\" name=\"q53_descriptionOf\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_126\">\n        <li id=\"cid_126\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_126\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_126\">\n              Referees and Official Details\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_fullname\" id=\"id_49\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_49\" for=\"first_49\">\n            Reporting Referee's Name\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_49\" class=\"form-input jf-required\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input type=\"text\" id=\"first_49\" name=\"q49_reportingReferees[first]\" class=\"form-textbox validate[required]\" size=\"10\" value=\"\" data-component=\"first\" required=\"\" \/>\n                <label class=\"form-sub-label\" for=\"first_49\" 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_49\" name=\"q49_reportingReferees[last]\" class=\"form-textbox validate[required]\" size=\"15\" value=\"\" data-component=\"last\" required=\"\" \/>\n                <label class=\"form-sub-label\" for=\"last_49\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_email\" id=\"id_55\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_55\" for=\"input_55\">\n            Reporting Referee's Email Address (this is not shared with reported parties)\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_55\" class=\"form-input jf-required\">\n            <input type=\"email\" id=\"input_55\" name=\"q55_reportingReferees55\" class=\"form-textbox validate[required, Email]\" size=\"30\" value=\"\" data-component=\"email\" required=\"\" \/>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_fullname\" id=\"id_50\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_50\" for=\"first_50\">\n            Umpire's Name \/ Non-reporting Referee\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_50\" class=\"form-input jf-required\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input type=\"text\" id=\"first_50\" name=\"q50_umpiresName[first]\" class=\"form-textbox validate[required]\" size=\"10\" value=\"\" data-component=\"first\" required=\"\" \/>\n                <label class=\"form-sub-label\" for=\"first_50\" 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_50\" name=\"q50_umpiresName[last]\" class=\"form-textbox validate[required]\" size=\"15\" value=\"\" data-component=\"last\" required=\"\" \/>\n                <label class=\"form-sub-label\" for=\"last_50\" 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_fullname\" id=\"id_51\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_51\" for=\"first_51\"> Name of Scorer #1 (optional) <\/label>\n          <div id=\"cid_51\" class=\"form-input\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input type=\"text\" id=\"first_51\" name=\"q51_nameOf51[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n                <label class=\"form-sub-label\" for=\"first_51\" 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_51\" name=\"q51_nameOf51[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n                <label class=\"form-sub-label\" for=\"last_51\" 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_fullname\" id=\"id_52\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_52\" for=\"first_52\"> Name of Scorer #2 (optional) <\/label>\n          <div id=\"cid_52\" class=\"form-input\">\n            <div data-wrapper-react=\"true\">\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input type=\"text\" id=\"first_52\" name=\"q52_nameOf52[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n                <label class=\"form-sub-label\" for=\"first_52\" 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_52\" name=\"q52_nameOf52[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n                <label class=\"form-sub-label\" for=\"last_52\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n      <\/ul>\n      <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_130\">\n        <li id=\"cid_130\" class=\"form-input-wide\" data-type=\"control_collapse\">\n          <div class=\"form-collapse-table\" id=\"collapse_130\" data-component=\"collapse\">\n            <span class=\"form-collapse-mid\" id=\"collapse-text_130\">\n              Submit Form\n            <\/span>\n            <span class=\"form-collapse-right form-collapse-right-hide\">\n              \u00a0\n            <\/span>\n          <\/div>\n        <\/li>\n        <li class=\"form-line jf-required\" data-type=\"control_signature\" id=\"id_54\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_54\" for=\"input_54\">\n            Signature of Reporting Referee\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_54\" class=\"form-input jf-required\">\n            <div data-wrapper-react=\"true\">\n              <div id=\"signature_pad_54\" class=\"signature-pad-wrapper\" style=\"width:402px;height:202px;\">\n                <div data-wrapper-react=\"true\">\n                  <!--[if IE 7]>\n                    <script type=\"text\/javascript\" src=\"\/js\/vendor\/json2.js\"><\/script>\n                  <![endif]-->\n                <\/div>\n                <div class=\"signature-line signature-wrapper\" data-component=\"signature\" style=\"width:402px;height:202px;\">\n                  <div id=\"sig_pad_54\" data-width=\"400\" data-height=\"200\" data-id=\"54\" data-required=\"true\" class=\"pad\">\n                  <\/div>\n                  <input type=\"hidden\" name=\"q54_signatureOf\" class=\"output4\" id=\"input_54\" \/>\n                <\/div>\n                <span class=\"clear-pad-btn clear-pad\">\n                  Clear\n                <\/span>\n              <\/div>\n              <div data-wrapper-react=\"true\">\n                <script type=\"text\/javascript\">\n                window.signatureForm = true\n                <\/script>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line always-hidden jf-required\" data-type=\"control_datetime\" id=\"id_57\">\n          <label class=\"form-label form-label-left form-label-auto\" id=\"label_57\" for=\"lite_mode_57\">\n            Date\n            <span class=\"form-required\">\n              *\n            <\/span>\n          <\/label>\n          <div id=\"cid_57\" class=\"form-input always-hidden jf-required\">\n            <div data-wrapper-react=\"true\">\n              <div style=\"display:none;\">\n                <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                  <input readonly=\"\" class=\"currentDate form-textbox validate[required, limitDate]\" id=\"day_57\" name=\"q57_date[day]\" type=\"tel\" size=\"2\" data-maxlength=\"2\" value=\"15\" required=\"\" \/>\n                  <span class=\"date-separate\">\n                    \u00a0\/\n                  <\/span>\n                  <label class=\"form-sub-label\" for=\"day_57\" id=\"sublabel_day\" style=\"min-height:13px;\"> Day <\/label>\n                <\/span>\n                <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                  <input readonly=\"\" class=\"form-textbox validate[required, limitDate]\" id=\"month_57\" name=\"q57_date[month]\" type=\"tel\" size=\"2\" data-maxlength=\"2\" value=\"02\" required=\"\" \/>\n                  <span class=\"date-separate\">\n                    \u00a0\/\n                  <\/span>\n                  <label class=\"form-sub-label\" for=\"month_57\" id=\"sublabel_month\" style=\"min-height:13px;\"> Month <\/label>\n                <\/span>\n                <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                  <input readonly=\"\" class=\"form-textbox validate[required, limitDate]\" id=\"year_57\" name=\"q57_date[year]\" type=\"tel\" size=\"4\" data-maxlength=\"4\" value=\"2018\" required=\"\" \/>\n                  <label class=\"form-sub-label\" for=\"year_57\" id=\"sublabel_year\" style=\"min-height:13px;\"> Year <\/label>\n                <\/span>\n              <\/div>\n              <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n                <input class=\"form-textbox validate[required, limitDate, validateLiteDate]\" id=\"lite_mode_57\" type=\"text\" size=\"12\" data-maxlength=\"12\" value=\"15\/02\/2018\" readonly=\"\" required=\"\" data-format=\"ddmmyyyy\" data-seperator=\"\/\" placeholder=\"dd\/mm\/yyyy\" \/>\n                <label class=\"form-sub-label\" for=\"lite_mode_57\" id=\"sublabel_litemode\" style=\"min-height:13px;\"> Date <\/label>\n              <\/span>\n            <\/div>\n          <\/div>\n        <\/li>\n        <li class=\"form-line\" data-type=\"control_button\" id=\"id_2\">\n          <div id=\"cid_2\" class=\"form-input-wide\">\n            <div style=\"text-align:center;\" class=\"form-buttons-wrapper\">\n              <button id=\"input_2\" 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=\"80098152910858\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"80098152910858-80098152910858\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n","NABA BV Report Form",Array,0);(function(){window.handleIFrameMessage=function(e){if(!e.data||!e.data.split)return;var args=e.data.split(":");var iframe=document.getElementById("80098152910858");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;case"exitFullscreen":if(window.document.exitFullscreen)window.document.exitFullscreen();else if(window.document.mozCancelFullScreen)window.document.mozCancelFullScreen();else if(window.document.mozCancelFullscreen)window.document.mozCancelFullScreen();else if(window.document.webkitExitFullscreen)window.document.webkitExitFullscreen();else if(window.document.msExitFullscreen)window.document.msExitFullscreen();break;}};if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();