/*jslint nomen:false, debug:true, evil:true, vars:false, browser:true, forin:true, undef:false, white:false */
/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, appendTo, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    this.appendTo = appendTo || false;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src=\"\" allowtransparency=\"true\" frameborder=\"0\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></if"+"rame>";
        if(this.appendTo === false){
            document.write(htmlCode);
        }else{
            var tmp = document.createElement('div');
            tmp.innerHTML = htmlCode;
            var a = this.appendTo;
            document.getElementById(a).appendChild(tmp.firstChild);            
        }
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent(this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){
            frameDocument.document.close();
            try{
                if('JotFormFrameLoaded' in window){
                    JotFormFrameLoaded();
                }
            }catch(e){}
        },200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            if(!this.frame.style.minHeight){
                this.frame.style.minHeight = "300px";
            }
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                //Emre: to prevent "iframe height"  problem (61059)
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement) &&
                     (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body) &&
                     (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i71914521588 = new FrameBuilder("71914521588", false, "", "<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Form<\/title>\n<link href=\"http:\/\/max.jotfor.ms\/min\/g=formCss?3.0.2435\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:5px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:#EDEDED;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:480px;\n        background:#EDEDED;\n        color:Black !important;\n        font-family:Arial;\n        font-size:12px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2435\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init(function(){\n      JotForm.setCalendar(\"26\");\n      JotForm.setCalendar(\"27\");\n      JotForm.description('input_51', 'Please tick the box next to the item you require.<br \/>If you require 2 or more please write note in field at bottom of form.');\n      JotForm.totalCounter({\"input_86_1001\":{\"price\":\"180\",\"quantityField\":\"input_86_quantity_1001_0\"},\"input_86_1002\":{\"price\":\"220\",\"quantityField\":\"input_86_quantity_1002_0\"},\"input_86_1003\":{\"price\":\"360\",\"quantityField\":\"input_86_quantity_1003_0\"},\"input_86_1009\":{\"price\":\"50\"},\"input_86_1004\":{\"price\":\"35\",\"quantityField\":\"input_86_quantity_1004_0\"},\"input_86_1005\":{\"price\":\"12\",\"quantityField\":\"input_86_quantity_1005_0\"},\"input_86_1007\":{\"price\":\"12\",\"quantityField\":\"input_86_quantity_1007_0\"},\"input_86_1008\":{\"price\":\"2.50\",\"quantityField\":\"input_86_quantity_1008_0\"}});\n      JotForm.description('input_86', 'Please check box AND enter quantities');\n   });\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" name=\"form_71914521588\" id=\"71914521588\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"71914521588\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_45\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_45\" class=\"form-header\">\n            Audiopod Order Form\n          <\/h2>\n        <\/div>\n      <\/li>\n      <li id=\"cid_8\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_8\" class=\"form-header\">\n            Your Details\n          <\/h3>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_10\">\n        <label class=\"form-label-left\" id=\"label_10\" for=\"input_10\">\n          Your Full Name<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_10\" name=\"q10_yourFull\" size=\"40\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_12\">\n        <label class=\"form-label-left\" id=\"label_12\" for=\"input_12\">\n          Your Email<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_12\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_12\" name=\"q12_yourEmail\" size=\"40\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\">\n          Postal Address<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_20\" class=\"form-input\">\n          <textarea id=\"input_20\" class=\"form-textarea validate[required]\" name=\"q20_postalAddress\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_53\">\n        <label class=\"form-label-left\" id=\"label_53\" for=\"input_53\">\n          Suburb<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_53\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_53\" name=\"q53_suburb\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_18\">\n        <label class=\"form-label-left\" id=\"label_18\" for=\"input_18\">\n          Mobile Phone<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_18\" name=\"q18_mobilePhone\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <label class=\"form-label-left\" id=\"label_17\" for=\"input_17\"> Home Phone <\/label>\n        <div id=\"cid_17\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_17\" name=\"q17_homePhone\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_48\">\n        <label class=\"form-label-left\" id=\"label_48\" for=\"input_48\"> Work Phone <\/label>\n        <div id=\"cid_48\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_48\" name=\"q48_workPhone\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_11\">\n        <label class=\"form-label-left\" id=\"label_11\" for=\"input_11\"> Booking Name <\/label>\n        <div id=\"cid_11\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_11\" name=\"q11_bookingName\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\">\n          Delivery Address<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <textarea id=\"input_19\" class=\"form-textarea validate[required]\" name=\"q19_deliveryAddress\" cols=\"30\" rows=\"3\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_65\">\n        <label class=\"form-label-left\" id=\"label_65\" for=\"input_65\"> Delivery Day <\/label>\n        <div id=\"cid_65\" class=\"form-input\">\n          <select class=\"form-dropdown\" style=\"width:150px\" id=\"input_65\" name=\"q65_deliveryDay\">\n            <option>  <\/option>\n            <option value=\"Monday\"> Monday <\/option>\n            <option value=\"Tuesday\"> Tuesday <\/option>\n            <option value=\"Wednesday\"> Wednesday <\/option>\n            <option value=\"Thursday\"> Thursday <\/option>\n            <option value=\"Friday\"> Friday <\/option>\n            <option value=\"Saturday\"> Saturday <\/option>\n            <option value=\"Sunday\"> Sunday <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_26\">\n        <label class=\"form-label-left\" id=\"label_26\" for=\"input_26\"> Delivery Date <\/label>\n        <div id=\"cid_26\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_26\" name=\"q26_deliveryDate[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"09\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_26\" id=\"sublabel_day\"> Day <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_26\" name=\"q26_deliveryDate[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_26\" id=\"sublabel_month\"> Month <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_26\" name=\"q26_deliveryDate[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_26\" id=\"sublabel_year\"> Year <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_26_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_26_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_21\">\n        <label class=\"form-label-left\" id=\"label_21\" for=\"input_21\"> Preferred Delivery Time <\/label>\n        <div id=\"cid_21\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_21\" name=\"q21_preferredDelivery\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <label class=\"form-label-left\" id=\"label_27\" for=\"input_27\"> Pick Up Date <\/label>\n        <div id=\"cid_27\" class=\"form-input\"><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"day_27\" name=\"q27_pickUp[day]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"09\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"day_27\" id=\"sublabel_day\"> Day <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"month_27\" name=\"q27_pickUp[month]\" type=\"text\" size=\"2\" maxlength=\"2\" value=\"02\" \/><span class=\"date-separate\">&nbsp;-<\/span>\n            <label class=\"form-sub-label\" for=\"month_27\" id=\"sublabel_month\"> Month <\/label><\/span><span class=\"form-sub-label-container\"><input class=\"form-textbox\" id=\"year_27\" name=\"q27_pickUp[year]\" type=\"text\" size=\"4\" maxlength=\"4\" value=\"2012\" \/>\n            <label class=\"form-sub-label\" for=\"year_27\" id=\"sublabel_year\"> Year <\/label><\/span><span class=\"form-sub-label-container\"><img alt=\"Pick a Date\" id=\"input_27_pick\" src=\"http:\/\/www.jotform.com\/images\/calendar.png\" align=\"absmiddle\" \/>\n            <label class=\"form-sub-label\" for=\"input_27_pick\"> &nbsp;&nbsp;&nbsp; <\/label><\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_22\">\n        <label class=\"form-label-left\" id=\"label_22\" for=\"input_22\">\n          Type of Event<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_22\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_22\" name=\"q22_typeOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_23\">\n        <label class=\"form-label-left\" id=\"label_23\" for=\"input_23\">\n          Number of Guests<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_23\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_23\" name=\"q23_numberOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_57\">\n        <label class=\"form-label-left\" id=\"label_57\" for=\"input_57\"> Time of Guest Arrival <\/label>\n        <div id=\"cid_57\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_57\" name=\"q57_timeOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_90\" class=\"form-input-wide\">\n        <div class=\"form-pagebreak\">\n          <div class=\"form-pagebreak-back-container form-label-left\">\n            <button type=\"button\" class=\"form-pagebreak-back\" id=\"form-pagebreak-back_90\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button type=\"button\" class=\"form-pagebreak-next\" id=\"form-pagebreak-next_90\">\n              Next\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section\" style=\"display:none;\">\n      <li id=\"cid_43\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_43\" class=\"form-header\">\n            Audio Visual\n          <\/h3>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_51\">\n        <label class=\"form-label-left\" id=\"label_51\" for=\"input_51\"> Check the box next to the system that you want to order. <\/label>\n        <div id=\"cid_51\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_0\" name=\"q51_checkThe[]\" value=\"Presentation Pack $250\" \/>\n              <label for=\"input_51_0\"> Presentation Pack $250 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_1\" name=\"q51_checkThe[]\" value=\"Conference Pack $280\" \/>\n              <label for=\"input_51_1\"> Conference Pack $280 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_2\" name=\"q51_checkThe[]\" value=\"Wedding Pack $260\" \/>\n              <label for=\"input_51_2\"> Wedding Pack $260 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_3\" name=\"q51_checkThe[]\" value=\"Wedding Pack with Disco Lights $300\" \/>\n              <label for=\"input_51_3\"> Wedding Pack with Disco Lights $300 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_4\" name=\"q51_checkThe[]\" value=\"Party Pack 1 $170\" \/>\n              <label for=\"input_51_4\"> Party Pack 1 $170 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_5\" name=\"q51_checkThe[]\" value=\"Party Pack 2 $190\" \/>\n              <label for=\"input_51_5\"> Party Pack 2 $190 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_6\" name=\"q51_checkThe[]\" value=\"With Disco Lights extra $50\" \/>\n              <label for=\"input_51_6\"> With Disco Lights extra $50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_7\" name=\"q51_checkThe[]\" value=\"Small Portable PA $140\" \/>\n              <label for=\"input_51_7\"> Small Portable PA $140 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_8\" name=\"q51_checkThe[]\" value=\"Mipro 705 Portable PA $160\" \/>\n              <label for=\"input_51_8\"> Mipro 705 Portable PA $160 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_9\" name=\"q51_checkThe[]\" value=\"Mipro 707 Portable PA $180\" \/>\n              <label for=\"input_51_9\"> Mipro 707 Portable PA $180 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_10\" name=\"q51_checkThe[]\" value=\"Mipro 808 Portable PA $220\" \/>\n              <label for=\"input_51_10\"> Mipro 808 Portable PA $220 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_11\" name=\"q51_checkThe[]\" value=\"Marquee Surround Sound Pack $220\" \/>\n              <label for=\"input_51_11\"> Marquee Surround Sound Pack $220 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_12\" name=\"q51_checkThe[]\" value=\"Small Powered Speaker Hire $120\" \/>\n              <label for=\"input_51_12\"> Small Powered Speaker Hire $120 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_13\" name=\"q51_checkThe[]\" value=\"Large Powered Speaker Hire $140\" \/>\n              <label for=\"input_51_13\"> Large Powered Speaker Hire $140 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_14\" name=\"q51_checkThe[]\" value=\"Data Projector &amp; Screen $180\" \/>\n              <label for=\"input_51_14\"> Data Projector &amp; Screen $180 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_15\" name=\"q51_checkThe[]\" value=\"Just the Data Projector $140\" \/>\n              <label for=\"input_51_15\"> Just the Data Projector $140 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_51_16\" name=\"q51_checkThe[]\" value=\"Other Please specify below...\" \/>\n              <label for=\"input_51_16\"> Other Please specify below... <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_81\">\n        <label class=\"form-label-left\" id=\"label_81\" for=\"input_81\"> Special Requests <\/label>\n        <div id=\"cid_81\" class=\"form-input\">\n          <textarea id=\"input_81\" class=\"form-textarea\" name=\"q81_specialRequests\" cols=\"40\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li id=\"cid_50\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_50\" class=\"form-header\">\n            Extras\n          <\/h3>\n          <div id=\"subHeader_50\" class=\"form-subHeader\">\n            Minimum order for free delivery is $100.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_68\">\n        <label class=\"form-label-left\" id=\"label_68\" for=\"input_68\"> Check the box next to the item required <\/label>\n        <div id=\"cid_68\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_0\" name=\"q68_checkThe68[]\" value=\"Standard Microphone with Stand &amp; Cord $20\" \/>\n              <label for=\"input_68_0\"> Standard Microphone with Stand &amp; Cord $20 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_1\" name=\"q68_checkThe68[]\" value=\"Cordless Hand Held Microphone $40\" \/>\n              <label for=\"input_68_1\"> Cordless Hand Held Microphone $40 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_2\" name=\"q68_checkThe68[]\" value=\"Cordless Lapel Microphone $50\" \/>\n              <label for=\"input_68_2\"> Cordless Lapel Microphone $50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_3\" name=\"q68_checkThe68[]\" value=\"Cordless Headset Microphone $50\" \/>\n              <label for=\"input_68_3\"> Cordless Headset Microphone $50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_4\" name=\"q68_checkThe68[]\" value=\"Wireless Audio Transmitter &amp; Receiver $50\" \/>\n              <label for=\"input_68_4\"> Wireless Audio Transmitter &amp; Receiver $50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_5\" name=\"q68_checkThe68[]\" value=\"Lecturn  $80\" \/>\n              <label for=\"input_68_5\"> Lecturn $80 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_6\" name=\"q68_checkThe68[]\" value=\"CD Player $20\" \/>\n              <label for=\"input_68_6\"> CD Player $20 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_7\" name=\"q68_checkThe68[]\" value=\"DVD Player $20\" \/>\n              <label for=\"input_68_7\"> DVD Player $20 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_68_8\" name=\"q68_checkThe68[]\" value=\"2 x Beat activated Disco lights on a Stand $50\" \/>\n              <label for=\"input_68_8\"> 2 x Beat activated Disco lights on a Stand $50 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_87\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h3 id=\"header_87\" class=\"form-header\">\n            Marquees, Tables & Chairs\n          <\/h3>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_86\">\n        <label class=\"form-label-left\" id=\"label_86\" for=\"input_86\"> Marquee and Furniture Order <\/label>\n        <div id=\"cid_86\" class=\"form-input\"><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1001\" name=\"q86_marqueeAnd[][id]\" value=\"1001\" \/>\n            <label for=\"input_86_1001\">\n              3m x 3m Marquee<span class=\"form-product-details\"><b>\n                  $<span id=\"\">180.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1001][item_0]\" id=\"input_86_quantity_1001_0\">\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 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              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1001_0\"> Quantity <\/label><\/span><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1002\" name=\"q86_marqueeAnd[][id]\" value=\"1002\" \/>\n            <label for=\"input_86_1002\">\n              3m x 6m Marquee<span class=\"form-product-details\"><b>\n                  $<span id=\"\">220.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1002][item_0]\" id=\"input_86_quantity_1002_0\">\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 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              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1002_0\"> Quantity <\/label><\/span><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1003\" name=\"q86_marqueeAnd[][id]\" value=\"1003\" \/>\n            <label for=\"input_86_1003\">\n              6m Hexagonal Marquee<span class=\"form-product-details\"><b>\n                  $<span id=\"\">360.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1003][item_0]\" id=\"input_86_quantity_1003_0\">\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 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              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1003_0\"> Quantity <\/label><\/span><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1009\" name=\"q86_marqueeAnd[][id]\" value=\"1009\" \/>\n            <label for=\"input_86_1009\">\n              Large 4m White Garden Umbrella with Base<span class=\"form-product-details\"><b>\n                  $<span id=\"\">50.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1004\" name=\"q86_marqueeAnd[][id]\" value=\"1004\" \/>\n            <label for=\"input_86_1004\">\n              Internal Marquee Lights<span class=\"form-product-details\"><b>\n                  $<span id=\"\">35.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1004][item_0]\" id=\"input_86_quantity_1004_0\">\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 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              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1004_0\"> Quantity <\/label><\/span><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1005\" name=\"q86_marqueeAnd[][id]\" value=\"1005\" \/>\n            <label for=\"input_86_1005\">\n              Trestle Tables<span class=\"form-product-details\"><b>\n                  $<span id=\"\">12.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1005][item_0]\" id=\"input_86_quantity_1005_0\">\n                <option value=\"1\n                \">\n                  1\n                <\/option>\n                <option value=\"2\n                \">\n                  2\n                <\/option>\n                <option value=\"3\n                \">\n                  3\n                <\/option>\n                <option value=\"4\n                \">\n                  4\n                <\/option>\n                <option value=\"5\n                \">\n                  5\n                <\/option>\n                <option value=\"6\n                \">\n                  6\n                <\/option>\n                <option value=\"7\n                \">\n                  7\n                <\/option>\n                <option value=\"8\n                \">\n                  8\n                <\/option>\n                <option value=\"9\n                \">\n                  9\n                <\/option>\n                <option value=\"10\"> 10 <\/option>\n              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1005_0\"> Quantity <\/label><\/span>\n            <img src=\"http:\/\/www.audiopod.com.au\/images\/barrelMoulded.jpg\" class=\"form-product-image-with-options\" height=\"50\" width=\"50\" align=\"absmiddle\" \/><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1007\" name=\"q86_marqueeAnd[][id]\" value=\"1007\" \/>\n            <label for=\"input_86_1007\">\n              3 foot round Garden Table<span class=\"form-product-details\"><b>\n                  $<span id=\"\">12.00<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1007][item_0]\" id=\"input_86_quantity_1007_0\">\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 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              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1007_0\"> Quantity <\/label><\/span>\n            <img src=\"http:\/\/www.audiopod.com.au\/images\/blowmoulded_4.jpg\" class=\"form-product-image-with-options\" height=\"50\" width=\"50\" align=\"absmiddle\" \/><\/span>\n          <br \/><span class=\"form-product-item\"><input class=\"form-checkbox\" type=\"checkbox\" id=\"input_86_1008\" name=\"q86_marqueeAnd[][id]\" value=\"1008\" \/>\n            <label for=\"input_86_1008\">\n              White Garden Chair (plastic)<span class=\"form-product-details\"><b>\n                  $<span id=\"\">2.50<\/span>\n                  AUD\n                <\/b><\/span>\n            <\/label>\n            <br \/>\n            <br \/><span class=\"form-sub-label-container\"><select class=\"form-dropdown\" name=\"q86_marqueeAnd[special_1008][item_0]\" id=\"input_86_quantity_1008_0\">\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 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                <option value=\"13\"> 13 <\/option>\n                <option value=\"14\"> 14 <\/option>\n                <option value=\"15\"> 15 <\/option>\n                <option value=\"16\"> 16 <\/option>\n                <option value=\"17\"> 17 <\/option>\n                <option value=\"18\"> 18 <\/option>\n                <option value=\"19\"> 19 <\/option>\n                <option value=\"20\"> 20 <\/option>\n                <option value=\"21\"> 21 <\/option>\n                <option value=\"22\"> 22 <\/option>\n                <option value=\"23\"> 23 <\/option>\n                <option value=\"24\"> 24 <\/option>\n                <option value=\"25\"> 25 <\/option>\n                <option value=\"26\"> 26 <\/option>\n                <option value=\"27\"> 27 <\/option>\n                <option value=\"28\"> 28 <\/option>\n                <option value=\"29\"> 29 <\/option>\n                <option value=\"30\"> 30 <\/option>\n                <option value=\"31\"> 31 <\/option>\n                <option value=\"32\"> 32 <\/option>\n                <option value=\"33\"> 33 <\/option>\n                <option value=\"34\"> 34 <\/option>\n                <option value=\"35\"> 35 <\/option>\n                <option value=\"36\"> 36 <\/option>\n                <option value=\"37\"> 37 <\/option>\n                <option value=\"38\"> 38 <\/option>\n                <option value=\"39\"> 39 <\/option>\n                <option value=\"40\"> 40 <\/option>\n                <option value=\"41\"> 41 <\/option>\n                <option value=\"42\"> 42 <\/option>\n                <option value=\"43\"> 43 <\/option>\n                <option value=\"44\"> 44 <\/option>\n                <option value=\"45\"> 45 <\/option>\n                <option value=\"46\"> 46 <\/option>\n                <option value=\"47\"> 47 <\/option>\n                <option value=\"48\"> 48 <\/option>\n                <option value=\"49\"> 49 <\/option>\n                <option value=\"50\"> 50 <\/option>\n                <option value=\"more? please enter below\"> more? please enter below <\/option>\n              <\/select>\n              <label class=\"form-sub-label\" for=\"input_86_quantity_1008_0\"> Quantity <\/label><\/span>\n            <img src=\"http:\/\/www.audiopod.com.au\/images\/plastic_stacking.jpg\" class=\"form-product-image-with-options\" height=\"50\" width=\"50\" align=\"absmiddle\" \/><\/span>\n          <br \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_46\">\n        <label class=\"form-label-left\" id=\"label_46\" for=\"input_46\"> Additional notes, or questions. <\/label>\n        <div id=\"cid_46\" class=\"form-input\">\n          <textarea id=\"input_46\" class=\"form-textarea\" name=\"q46_additionalNotes\" cols=\"50\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_56\">\n        <div id=\"cid_56\" class=\"form-input-wide\">\n          <div id=\"text_56\" class=\"form-html\">\n            TERMS AND CONDITIONS Package Price includes delivery & pick up to Adelaide Metro Area. An additional delivery fee will be charged beyond this zone. (Please see Delivery Zone Page) Additional charges will apply if a second pick up of goods is required. Missing, stolen, or broken goods will be charged at full replacement value. Full Cash payment is due on delivery of goods. EFT Payments can be made before delivery. Cancellations within 24 hours of delivery will incur a $50.00 cancellation fee.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_55\">\n        <label class=\"form-label-top\" id=\"label_55\" for=\"input_55\">\n          Tick the box<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_55\" class=\"form-input-wide\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_55_0\" name=\"q55_tickThe55\" value=\"I understand and agree to the terms of hire, and accept that I will be responsible for the full replacement cost of missing or stolen items.\" \/>\n              <label for=\"input_55_0\"> I understand and agree to the terms of hire, and accept that I will be responsible for the full replacement cost of missing or stolen items. <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_89\">\n        <div id=\"cid_89\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_89\" type=\"submit\" class=\"form-submit-button\">\n              Submit Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"71914521588\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"71914521588-71914521588\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

