function FrameBuilder(formId,appendTo,initialHeight,iframeCode,title){this.formId=formId;this.initialHeight=initialHeight;this.iframeCode=iframeCode;this.frame=null;this.timeInterval=200;this.appendTo=appendTo||false;this.formSubmitted=0;this.init=function(){this.createFrame();this.addFrameContent(this.iframeCode);};this.createFrame=function(){var tmp_is_ie=!!window.ActiveXObject;var htmlCode="<"+"iframe title=\""+title.replace(/[\\"']/g,'\\$&').replace(/&amp;/g,'&')+"\" onload=\"window.parent.scrollTo(0,0)\" src=\"\" allowtransparency=\"true\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width: 1px; min-width: 100%; display: block; overflow: hidden; height:"+this.initialHeight+"px; border: none;\" scrolling=\"no\"></if"+"rame>";if(this.appendTo===false){document.write(htmlCode);}else{var tmp=document.createElement('div');tmp.innerHTML=htmlCode;var a=this.appendTo;document.getElementById(a).appendChild(tmp.firstChild);}
this.frame=document.getElementById(this.formId);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.formId);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){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.init();}
FrameBuilder.get=[];var i50026714195350=new FrameBuilder("50026714195350",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%2F50026714195350\" 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%2F50026714195350\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"Web banner\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotformeu.com\/form\/50026714195350\" >\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>Web banner<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.2307\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/nova.css?3.3.2307\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.2307\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/themes\/CSS\/54a8258725d790c5318b4567.css?themeRevisionID=54a832f025d79028028b4568\"\/>\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:false;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:683px;\n        color:#555 !important;\n        font-family:'Libre Baskerville';\n        font-size:15px;\n    }\n    .form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{\n        color: #555;\n    }\n\n<\/style>\n\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/buttons\/form-submit-button-simple_blue.css?3.3.2307\"\/>\n<script src=\"https:\/\/cdn.jotfor.ms\/file-uploader\/fileuploader.js?v=3.3.2307\"><\/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.2307\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init(function(){\n      JotForm.setCustomHint( 'input_23', 'We sell anvils and other industrial goods to manufacturing companies and hobbyists all over the world.' );\n      JotForm.setCustomHint( 'input_25', 'Tip: Providing any thoughts on colors, textures, shapes, photography illustration and typography will help guide designers.' );\n      JotForm.setCustomHint( 'input_22', 'List websites you like and describe what you like about them.' );\n      JotForm.alterTexts({\"alphabetic\":\"Pole mo\u017ce zawiera\u0107 tylko litery\",\"alphanumeric\":\"To pole mo\u017ce zawiera\u0107 jedynie litery i cyfry.\",\"characterLimitError\":\"Too many Characters.  The limit is\",\"confirmClearForm\":\"Czy jeste\u015b pewien, \u017ce chcesz wyczy\u015bci\u0107 formularz?\",\"confirmEmail\":\"Adres e-mail niezgodny\",\"currency\":\"This field can only contain currency values.\",\"cyrillic\":\"This field can only contain cyrillic characters\",\"email\":\"Wpisz poprawny adres e-mail\",\"fillMask\":\"Field value must fill mask.\",\"generalError\":\"S\u0105 b\u0142\u0119dy w formularzu. Popraw je przed kontynuowaniem.\",\"generalPageError\":\"S\u0105 b\u0142\u0119dy na tej stronie. Popraw je przed kontynuowaniem.\",\"gradingScoreError\":\"\u0141\u0105czny suma powinien by\u0107 mniejszy lub r\u00f3wny\",\"incompleteFields\":\"Nie wype\u0142niono wszystkich wymaganych p\u00f3l. Prosz\u0119 je wype\u0142ni\u0107.\",\"inputCarretErrorA\":\"Dane wej\u015bciowe nie powinna by\u0107 mniejsza ni\u017c minimalna warto\u015b\u0107:\",\"inputCarretErrorB\":\"Dane wej\u015bciowe nie powinna by\u0107 wi\u0119ksza ni\u017c warto\u015b\u0107 maksymalna:\",\"lessThan\":\"Sw\u00f3j wynik powinien by\u0107 mniejszy lub r\u00f3wny\",\"maxDigitsError\":\"Maksymalne cyfry dozwolony jest\",\"maxSelectionsError\":\"Maksymalnie mo\u017cesz zaznaczy\u0107\",\"minSelectionsError\":\"Minimalna wymagana liczba wybor\u00f3w jest\",\"multipleFileUploads_emptyError\":\"{file} jest pusty, wybierz pliki ponownie bez niego.\",\"multipleFileUploads_fileLimitError\":\"Only {fileLimit} file uploads allowed.\",\"multipleFileUploads_minSizeError\":\"{file} jest zbyt ma\u0142y, minimalny rozmiar pliku jest {minSizeLimit}.\",\"multipleFileUploads_onLeave\":\"Pliki zosta\u0142y przes\u0142ane, je\u015bli zostawisz teraz przes\u0142a\u0107 zostanie anulowana.\",\"multipleFileUploads_sizeError\":\"{file} jest zbyt du\u017cy, maksymalny rozmiar pliku to {sizeLimit}.\",\"multipleFileUploads_typeError\":\"{file} ma nieprawid\u0142owy rozszerzenie. Tylko {extensions} s\u0105 dozwolone.\",\"numeric\":\"To pole mo\u017ce zawiera\u0107 wy\u0142\u0105cznie liczby\",\"pastDatesDisallowed\":\"Data nie mo\u017ce by\u0107 w przesz\u0142o\u015bci.\",\"pleaseWait\":\"Prosz\u0119 czeka\u0107 ...\",\"required\":\"To pole jest wymagane\",\"requireEveryCell\":\"Every cell is required.\",\"requireEveryRow\":\"Ka\u017cdy wiersz jest wymagane.\",\"requireOne\":\"Co najmniej jedno pole wymagane.\",\"submissionLimit\":\"Sorry! Only one entry is allowed.  Multiple submissions are disabled for this form.\",\"uploadExtensions\":\"Mo\u017cesz przes\u0142a\u0107 tylko nast\u0119puj\u0105ce pliki:\",\"uploadFilesize\":\"\\nRozmiar pliku nie mo\u017ce by\u0107 wi\u0119kszy ni\u017c:\",\"uploadFilesizemin\":\"File size cannot be smaller than:\",\"wordLimitError\":\"Too many words. The limit is\"});\n      setTimeout(function() {\n          JotForm.initMultipleUploads();\n      }, 2);\n    \/*INIT-END*\/\n});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,{\"name\":\"kliknikAby\",\"qid\":\"1\",\"text\":\"Get a WEBSITE BANNER design you'll love...\",\"type\":\"control_head\"},null,{\"name\":\"whatIs3\",\"qid\":\"3\",\"text\":\"What is your organization name?\",\"type\":\"control_textbox\"},null,null,null,null,null,null,null,{\"name\":\"doYou11\",\"qid\":\"11\",\"text\":\"Do you have any images, sketches or documents that might be helpful?\",\"type\":\"control_fileupload\"},{\"name\":\"przeslij\",\"qid\":\"12\",\"text\":\"Send to Graffiti Design\",\"type\":\"control_button\"},null,{\"name\":\"kliknikAby14\",\"qid\":\"14\",\"text\":\"Your personal details (for our reference only...)\",\"type\":\"control_head\"},{\"name\":\"name\",\"qid\":\"15\",\"text\":\"Name\",\"type\":\"control_textbox\"},{\"name\":\"surname\",\"qid\":\"16\",\"text\":\"Surname\",\"type\":\"control_textbox\"},{\"name\":\"contactNumber\",\"qid\":\"17\",\"text\":\"Contact number\",\"type\":\"control_textbox\"},{\"name\":\"email\",\"qid\":\"18\",\"text\":\"E-mail\",\"type\":\"control_textbox\"},null,null,null,{\"name\":\"whatWebsites\",\"qid\":\"22\",\"text\":\"What websites can designers draw inspiration from?\",\"type\":\"control_textarea\"},{\"name\":\"brieflyDescribe\",\"qid\":\"23\",\"text\":\"Briefly describe what your website does and your target audience\",\"type\":\"control_textarea\"},{\"name\":\"websiteAddress\",\"qid\":\"24\",\"text\":\"Website address\",\"type\":\"control_textbox\"},{\"name\":\"whatStyle25\",\"qid\":\"25\",\"text\":\"What style or theme do you want to use?\",\"type\":\"control_textarea\"},{\"name\":\"whatShould\",\"qid\":\"26\",\"text\":\"What should be the banner size?\",\"type\":\"control_textbox\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,{\"name\":\"kliknikAby\",\"qid\":\"1\",\"text\":\"Get a WEBSITE BANNER design you'll love...\",\"type\":\"control_head\"},null,{\"name\":\"whatIs3\",\"qid\":\"3\",\"text\":\"What is your organization name?\",\"type\":\"control_textbox\"},null,null,null,null,null,null,null,{\"name\":\"doYou11\",\"qid\":\"11\",\"text\":\"Do you have any images, sketches or documents that might be helpful?\",\"type\":\"control_fileupload\"},{\"name\":\"przeslij\",\"qid\":\"12\",\"text\":\"Send to Graffiti Design\",\"type\":\"control_button\"},null,{\"name\":\"kliknikAby14\",\"qid\":\"14\",\"text\":\"Your personal details (for our reference only...)\",\"type\":\"control_head\"},{\"name\":\"name\",\"qid\":\"15\",\"text\":\"Name\",\"type\":\"control_textbox\"},{\"name\":\"surname\",\"qid\":\"16\",\"text\":\"Surname\",\"type\":\"control_textbox\"},{\"name\":\"contactNumber\",\"qid\":\"17\",\"text\":\"Contact number\",\"type\":\"control_textbox\"},{\"name\":\"email\",\"qid\":\"18\",\"text\":\"E-mail\",\"type\":\"control_textbox\"},null,null,null,{\"name\":\"whatWebsites\",\"qid\":\"22\",\"text\":\"What websites can designers draw inspiration from?\",\"type\":\"control_textarea\"},{\"name\":\"brieflyDescribe\",\"qid\":\"23\",\"text\":\"Briefly describe what your website does and your target audience\",\"type\":\"control_textarea\"},{\"name\":\"websiteAddress\",\"qid\":\"24\",\"text\":\"Website address\",\"type\":\"control_textbox\"},{\"name\":\"whatStyle25\",\"qid\":\"25\",\"text\":\"What style or theme do you want to use?\",\"type\":\"control_textarea\"},{\"name\":\"whatShould\",\"qid\":\"26\",\"text\":\"What should be the banner size?\",\"type\":\"control_textbox\"}]);}, 20); \n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotformeu.com\/submit\/50026714195350\/\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_50026714195350\" id=\"50026714195350\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"50026714195350\" \/>\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 httac htvam\">\n            <h2 id=\"header_1\" class=\"form-header\" data-component=\"header\">\n              Get a WEBSITE BANNER design you&#x27;ll love...\n            <\/h2>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_3\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_3\" for=\"input_3\"> What is your organization name? <\/label>\n        <div id=\"cid_3\" class=\"form-input\">\n          <input type=\"text\" id=\"input_3\" name=\"q3_whatIs3\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textarea\" id=\"id_23\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_23\" for=\"input_23\"> Briefly describe what your website does and your target audience <\/label>\n        <div id=\"cid_23\" class=\"form-input\">\n          <textarea id=\"input_23\" class=\"form-textarea\" name=\"q23_brieflyDescribe\" cols=\"40\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_24\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_24\" for=\"input_24\">\n          Website address\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_24\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_24\" name=\"q24_websiteAddress\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_26\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_26\" for=\"input_26\">\n          What should be the banner size?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_26\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_26\" name=\"q26_whatShould\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textarea\" id=\"id_25\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_25\" for=\"input_25\"> What style or theme do you want to use? <\/label>\n        <div id=\"cid_25\" class=\"form-input\">\n          <textarea id=\"input_25\" class=\"form-textarea\" name=\"q25_whatStyle25\" cols=\"40\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textarea\" id=\"id_22\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_22\" for=\"input_22\"> What websites can designers draw inspiration from? <\/label>\n        <div id=\"cid_22\" class=\"form-input\">\n          <textarea id=\"input_22\" class=\"form-textarea\" name=\"q22_whatWebsites\" cols=\"40\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_fileupload\" id=\"id_11\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_11\" for=\"input_11\"> Do you have any images, sketches or documents that might be helpful? <\/label>\n        <div id=\"cid_11\" class=\"form-input\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <div class=\"qq-uploader-buttonText-value\">\n                Upload a File\n              <\/div>\n              <input type=\"file\" id=\"input_11\" name=\"q11_doYou11[]\" multiple=\"\" class=\"form-upload-multiple\" data-file-accept=\"pdf, doc, docx, xls, xlsx, csv, txt, rtf, html, zip, mp3, wma, mpg, flv, avi, jpg, jpeg, png, gif\" data-file-maxsize=\"2000\" data-file-minsize=\"0\" data-file-limit=\"300\" data-component=\"fileupload\" \/>\n              <label class=\"form-sub-label\" for=\"input_11\" style=\"min-height:13px;\"> E.g. Your current logo, photos, illustrations, content, layout ideas etc. <\/label>\n            <\/span>\n            <span style=\"display:none;\" class=\"cancelText\">\n              Cancel\n            <\/span>\n            <span style=\"display:none;\" class=\"ofText\">\n              of\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_14\" class=\"form-input-wide\" data-type=\"control_head\">\n        <div class=\"form-header-group \">\n          <div class=\"header-text httac htvam\">\n            <h3 id=\"header_14\" class=\"form-header\" data-component=\"header\">\n              Your personal details (for our reference only...)\n            <\/h3>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_15\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_15\" for=\"input_15\">\n          Name\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_15\" name=\"q15_name\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_16\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_16\" for=\"input_16\">\n          Surname\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_16\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_16\" name=\"q16_surname\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_17\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_17\" for=\"input_17\">\n          Contact number\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_17\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_17\" name=\"q17_contactNumber\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_18\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_18\" for=\"input_18\"> E-mail <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <input type=\"text\" id=\"input_18\" name=\"q18_email\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_button\" id=\"id_12\">\n        <div id=\"cid_12\" class=\"form-input-wide\">\n          <div style=\"text-align:center;\" class=\"form-buttons-wrapper\">\n            <button id=\"input_12\" type=\"submit\" class=\"form-submit-button form-submit-button-simple_blue\" data-component=\"button\">\n              Send to Graffiti Design\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=\"50026714195350\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"50026714195350-50026714195350\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n","Web banner");(function(){window.handleIFrameMessage=function(e){var args=e.data.split(":");var iframe=document.getElementById("50026714195350");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"embedOptions":try{EmbedOptions.run(args[1],args[2]);}catch(e){console.log(e);}
break;}};if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();