/*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 i71104404341 = new FrameBuilder("71104404341", 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:white;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:690px;\n        background:white;\n        color:black !important;\n        font-family:Verdana;\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();\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_71104404341\" id=\"71104404341\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"71104404341\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li class=\"form-line\" id=\"id_40\">\n        <label class=\"form-label-left\" id=\"label_40\" for=\"input_40\">\n          Comics<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_40\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_0\" name=\"q40_comics[]\" value=\"100 PENNY PRESS TRANSFORMERS CLASSICS #1&quot;,1.00\" \/>\n              <label for=\"input_40_0\"> 100 PENNY PRESS TRANSFORMERS CLASSICS #1\",1.00 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_1\" name=\"q40_comics[]\" value=\"50 GIRLS 50 #2 (OF 4)&quot;,2.99\" \/>\n              <label for=\"input_40_1\"> 50 GIRLS 50 #2 (OF 4)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_2\" name=\"q40_comics[]\" value=\"ADVENTURE COMICS #528&quot;,2.99\" \/>\n              <label for=\"input_40_2\"> ADVENTURE COMICS #528\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_3\" name=\"q40_comics[]\" value=\"ASTONISHING THOR #5 (OF 5)&quot;,3.99\" \/>\n              <label for=\"input_40_3\"> ASTONISHING THOR #5 (OF 5)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_4\" name=\"q40_comics[]\" value=\"AVENGERS THOR CAPTAIN AMERICA OFF INDEX MU #15&quot;,3.99\" \/>\n              <label for=\"input_40_4\"> AVENGERS THOR CAPTAIN AMERICA OFF INDEX MU #15\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_5\" name=\"q40_comics[]\" value=\"BATMAN AND ROBIN #25&quot;,2.99\" \/>\n              <label for=\"input_40_5\"> BATMAN AND ROBIN #25\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_6\" name=\"q40_comics[]\" value=\"BATMAN BEYOND #7&quot;,2.99\" \/>\n              <label for=\"input_40_6\"> BATMAN BEYOND #7\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_7\" name=\"q40_comics[]\" value=\"BLUE ESTATE #4 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_7\"> BLUE ESTATE #4 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_8\" name=\"q40_comics[]\" value=\"BOYS #56 (MR)&quot;,3.99\" \/>\n              <label for=\"input_40_8\"> BOYS #56 (MR)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_9\" name=\"q40_comics[]\" value=\"BRIMSTONE #2 A CVR DEBALFO (MR)&quot;,3.25,\" \/>\n              <label for=\"input_40_9\"> BRIMSTONE #2 A CVR DEBALFO (MR)\",3.25, <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_10\" name=\"q40_comics[]\" value=\"BRIMSTONE #2 B CVR SEJIC (MR)&quot;,3.25\" \/>\n              <label for=\"input_40_10\"> BRIMSTONE #2 B CVR SEJIC (MR)\",3.25 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_11\" name=\"q40_comics[]\" value=\"CAP AND THOR AVENGERS #1&quot;,4.99\" \/>\n              <label for=\"input_40_11\"> CAP AND THOR AVENGERS #1\",4.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_12\" name=\"q40_comics[]\" value=\"CARS 2 #2 (OF 2)&quot;,3.99\" \/>\n              <label for=\"input_40_12\"> CARS 2 #2 (OF 2)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_13\" name=\"q40_comics[]\" value=\"CHEW #19 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_13\"> CHEW #19 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_14\" name=\"q40_comics[]\" value=\"CHIP N DALE RESCUE RANGERS #8&quot;,3.99\" \/>\n              <label for=\"input_40_14\"> CHIP N DALE RESCUE RANGERS #8\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_15\" name=\"q40_comics[]\" value=\"CONAN LEGACY FRAZETTA COVER #8 (OF 8)&quot;,6.99\" \/>\n              <label for=\"input_40_15\"> CONAN LEGACY FRAZETTA COVER #8 (OF 8)\",6.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_16\" name=\"q40_comics[]\" value=\"DARK TOWER GUNSLINGER BATTLE OF TULL #2 (OF 5)&quot;,3.99\" \/>\n              <label for=\"input_40_16\"> DARK TOWER GUNSLINGER BATTLE OF TULL #2 (OF 5)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_17\" name=\"q40_comics[]\" value=\"DC COMICS PRESENTS SUPERMAN #4&quot;,7.99\" \/>\n              <label for=\"input_40_17\"> DC COMICS PRESENTS SUPERMAN #4\",7.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_18\" name=\"q40_comics[]\" value=\"DC UNIVERSE ONLINE LEGENDS #11&quot;,2.99\" \/>\n              <label for=\"input_40_18\"> DC UNIVERSE ONLINE LEGENDS #11\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_19\" name=\"q40_comics[]\" value=\"DOCTOR SOLAR MAN OF ATOM #7&quot;,3.50\" \/>\n              <label for=\"input_40_19\"> DOCTOR SOLAR MAN OF ATOM #7\",3.50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_20\" name=\"q40_comics[]\" value=\"ELRIC THE BALANCE LOST #1&quot;,3.99\" \/>\n              <label for=\"input_40_20\"> ELRIC THE BALANCE LOST #1\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_21\" name=\"q40_comics[]\" value=\"EXECUTIVE ASSISTANT IRIS VOL 2 #1 &quot;,2.99\" \/>\n              <label for=\"input_40_21\"> EXECUTIVE ASSISTANT IRIS VOL 2 #1 \",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_22\" name=\"q40_comics[]\" value=\"FEAR ITSELF #4 (OF 7) FEAR&quot;,3.99\" \/>\n              <label for=\"input_40_22\"> FEAR ITSELF #4 (OF 7) FEAR\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_23\" name=\"q40_comics[]\" value=\"FEAR ITSELF UNCANNY X-FORCE #1 (OF 3) FEAR&quot;,2.99\" \/>\n              <label for=\"input_40_23\"> FEAR ITSELF UNCANNY X-FORCE #1 (OF 3) FEAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_24\" name=\"q40_comics[]\" value=\"FEAR ITSELF WOLVERINE #1 (OF 3) FEAR&quot;,2.99\" \/>\n              <label for=\"input_40_24\"> FEAR ITSELF WOLVERINE #1 (OF 3) FEAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_25\" name=\"q40_comics[]\" value=\"FEAR ITSELF YOUTH IN REVOLT #3 (OF 6) FEAR&quot;,2.99\" \/>\n              <label for=\"input_40_25\"> FEAR ITSELF YOUTH IN REVOLT #3 (OF 6) FEAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_26\" name=\"q40_comics[]\" value=\"FLASHPOINT #3&quot;,3.99\" \/>\n              <label for=\"input_40_26\"> FLASHPOINT #3\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_27\" name=\"q40_comics[]\" value=\"FLASHPOINT ABIN SUR THE GREEN LANTERN #2 (OF 3)&quot;,2.99\" \/>\n              <label for=\"input_40_27\"> FLASHPOINT ABIN SUR THE GREEN LANTERN #2 (OF 3)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_28\" name=\"q40_comics[]\" value=\"FLASHPOINT BATMAN KNIGHT OF VENGEANCE #2 (OF 3)&quot;,2.99\" \/>\n              <label for=\"input_40_28\"> FLASHPOINT BATMAN KNIGHT OF VENGEANCE #2 (OF 3)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_29\" name=\"q40_comics[]\" value=\"FLASHPOINT SECRET SEVEN #2 (OF 3)&quot;,2.99\" \/>\n              <label for=\"input_40_29\"> FLASHPOINT SECRET SEVEN #2 (OF 3)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_30\" name=\"q40_comics[]\" value=\"FLASHPOINT THE WORLD OF FLASHPOINT #2 (OF 3)&quot;,2.99\" \/>\n              <label for=\"input_40_30\"> FLASHPOINT THE WORLD OF FLASHPOINT #2 (OF 3)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_31\" name=\"q40_comics[]\" value=\"GI JOE VOL 2 ONGOING #3&quot;,3.99\" \/>\n              <label for=\"input_40_31\"> GI JOE VOL 2 ONGOING #3\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_32\" name=\"q40_comics[]\" value=\"GREEN WAKE #4 (OF 5) (MR)&quot;,3.50\" \/>\n              <label for=\"input_40_32\"> GREEN WAKE #4 (OF 5) (MR)\",3.50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_33\" name=\"q40_comics[]\" value=\"HEROES FOR HIRE #9 FEAR&quot;,2.99\" \/>\n              <label for=\"input_40_33\"> HEROES FOR HIRE #9 FEAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_34\" name=\"q40_comics[]\" value=\"HULK #36&quot;,2.99\" \/>\n              <label for=\"input_40_34\"> HULK #36\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_35\" name=\"q40_comics[]\" value=\"IRREDEEMABLE #27&quot;,3.99\" \/>\n              <label for=\"input_40_35\"> IRREDEEMABLE #27\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_36\" name=\"q40_comics[]\" value=\"IZOMBIE #15 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_36\"> IZOMBIE #15 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_37\" name=\"q40_comics[]\" value=\"JONAH HEX #69&quot;,2.99\" \/>\n              <label for=\"input_40_37\"> JONAH HEX #69\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_38\" name=\"q40_comics[]\" value=\"KATO ORIGINS #10 THE HELLFIRE CLUB&quot;,3.99\" \/>\n              <label for=\"input_40_38\"> KATO ORIGINS #10 THE HELLFIRE CLUB\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_39\" name=\"q40_comics[]\" value=\"LOONEY TUNES #200&quot;,2.99\" \/>\n              <label for=\"input_40_39\"> LOONEY TUNES #200\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_40\" name=\"q40_comics[]\" value=\"MEGA MAN #3 SPAZ CVR&quot;,2.99\" \/>\n              <label for=\"input_40_40\"> MEGA MAN #3 SPAZ CVR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_41\" name=\"q40_comics[]\" value=\"MEGA MAN #3 VILLAIN VAR&quot;,2.99\" \/>\n              <label for=\"input_40_41\"> MEGA MAN #3 VILLAIN VAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_42\" name=\"q40_comics[]\" value=\"MOON KNIGHT #3&quot;,3.99\" \/>\n              <label for=\"input_40_42\"> MOON KNIGHT #3\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_43\" name=\"q40_comics[]\" value=\"MORIARTY #3&quot;,2.99\" \/>\n              <label for=\"input_40_43\"> MORIARTY #3\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_44\" name=\"q40_comics[]\" value=\"OZMA OF OZ #8 (OF 8)&quot;,3.99\" \/>\n              <label for=\"input_40_44\"> OZMA OF OZ #8 (OF 8)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_45\" name=\"q40_comics[]\" value=\"RED SKULL #1 (OF 5)&quot;,2.99\" \/>\n              <label for=\"input_40_45\"> RED SKULL #1 (OF 5)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_46\" name=\"q40_comics[]\" value=\"ROBERT JORDAN WHEEL OF TIME EYE O\/T WORLD #11&quot;,3.99\" \/>\n              <label for=\"input_40_46\"> ROBERT JORDAN WHEEL OF TIME EYE O\/T WORLD #11\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_47\" name=\"q40_comics[]\" value=\"RUE MORGUE MAGAZINE #113&quot;,9.95\" \/>\n              <label for=\"input_40_47\"> RUE MORGUE MAGAZINE #113\",9.95 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_48\" name=\"q40_comics[]\" value=\"SCOOBY DOO WHERE ARE YOU #11&quot;,2.99\" \/>\n              <label for=\"input_40_48\"> SCOOBY DOO WHERE ARE YOU #11\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_49\" name=\"q40_comics[]\" value=\"SCREAMLAND ONGOING #2&quot;,2.99\" \/>\n              <label for=\"input_40_49\"> SCREAMLAND ONGOING #2\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_50\" name=\"q40_comics[]\" value=\"SECRET SIX #35&quot;,2.99\" \/>\n              <label for=\"input_40_50\"> SECRET SIX #35\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_51\" name=\"q40_comics[]\" value=\"SHINKU #2 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_51\"> SHINKU #2 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_52\" name=\"q40_comics[]\" value=\"SKAAR KING OF SAVAGE LAND #3 (OF 5)&quot;,2.99\" \/>\n              <label for=\"input_40_52\"> SKAAR KING OF SAVAGE LAND #3 (OF 5)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_53\" name=\"q40_comics[]\" value=\"SOLOMON KANE RED SHADOWS #4 (OF 4) GUY DAVIS CVR&quot;,3.50\" \/>\n              <label for=\"input_40_53\"> SOLOMON KANE RED SHADOWS #4 (OF 4) GUY DAVIS CVR\",3.50 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_54\" name=\"q40_comics[]\" value=\"SPIDER-GIRL #8&quot;,2.99\" \/>\n              <label for=\"input_40_54\"> SPIDER-GIRL #8\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_55\" name=\"q40_comics[]\" value=\"SPIDER-ISLAND DAILY BUGLE&quot;,1.00\" \/>\n              <label for=\"input_40_55\"> SPIDER-ISLAND DAILY BUGLE\",1.00 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_56\" name=\"q40_comics[]\" value=\"SPIDER-MAN POWER COMES RESPONSIBILITY #4 (OF 7)&quot;,3.99\" \/>\n              <label for=\"input_40_56\"> SPIDER-MAN POWER COMES RESPONSIBILITY #4 (OF 7)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_57\" name=\"q40_comics[]\" value=\"SUPERBOY #9&quot;,2.99\" \/>\n              <label for=\"input_40_57\"> SUPERBOY #9\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_58\" name=\"q40_comics[]\" value=\"SUPREME POWER #2 (OF 4) (MR)&quot;,3.99\" \/>\n              <label for=\"input_40_58\"> SUPREME POWER #2 (OF 4) (MR)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_59\" name=\"q40_comics[]\" value=\"SWEET TOOTH #23 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_59\"> SWEET TOOTH #23 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_60\" name=\"q40_comics[]\" value=\"TALES FROM NEVERLAND #2 (OF 3) &quot;,3.99\" \/>\n              <label for=\"input_40_60\"> TALES FROM NEVERLAND #2 (OF 3) \",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_61\" name=\"q40_comics[]\" value=\"THAT HELLBOUND TRAIN #2 (OF 3)&quot;,3.99\" \/>\n              <label for=\"input_40_61\"> THAT HELLBOUND TRAIN #2 (OF 3)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_62\" name=\"q40_comics[]\" value=\"THUNDERBOLTS #160 FEAR&quot;,2.99\" \/>\n              <label for=\"input_40_62\"> THUNDERBOLTS #160 FEAR\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_63\" name=\"q40_comics[]\" value=\"TITANS ANNUAL 2011 #1&quot;,4.99\" \/>\n              <label for=\"input_40_63\"> TITANS ANNUAL 2011 #1\",4.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_64\" name=\"q40_comics[]\" value=\"TRAILBLAZER ONE SHOT (MR)&quot;,5.99\" \/>\n              <label for=\"input_40_64\"> TRAILBLAZER ONE SHOT (MR)\",5.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_65\" name=\"q40_comics[]\" value=\"TRANSFORMERS ONGOING #21&quot;,3.99\" \/>\n              <label for=\"input_40_65\"> TRANSFORMERS ONGOING #21\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_66\" name=\"q40_comics[]\" value=\"UNCANNY X-MEN #540 FEAR&quot;,3.99\" \/>\n              <label for=\"input_40_66\"> UNCANNY X-MEN #540 FEAR\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_67\" name=\"q40_comics[]\" value=\"VENGEANCE #1 (OF 6)&quot;,3.99\" \/>\n              <label for=\"input_40_67\"> VENGEANCE #1 (OF 6)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_68\" name=\"q40_comics[]\" value=\"VINCENT PRICE PRESENTS #31 (MR)&quot;,3.99\" \/>\n              <label for=\"input_40_68\"> VINCENT PRICE PRESENTS #31 (MR)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_69\" name=\"q40_comics[]\" value=\"WALKING DEAD SURVIVORS GUIDE #4 (OF 4) (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_69\"> WALKING DEAD SURVIVORS GUIDE #4 (OF 4) (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_70\" name=\"q40_comics[]\" value=\"WALKING DEAD WEEKLY #27 (MR)&quot;,2.99\" \/>\n              <label for=\"input_40_70\"> WALKING DEAD WEEKLY #27 (MR)\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_71\" name=\"q40_comics[]\" value=\"WOLVERINE AND BLACK CAT CLAWS 2 #1 (OF 3)&quot;,3.99\" \/>\n              <label for=\"input_40_71\"> WOLVERINE AND BLACK CAT CLAWS 2 #1 (OF 3)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_72\" name=\"q40_comics[]\" value=\"WYNONNA EARP YETI WARS #3&quot;,3.99\" \/>\n              <label for=\"input_40_72\"> WYNONNA EARP YETI WARS #3\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_73\" name=\"q40_comics[]\" value=\"X-23 #12&quot;,2.99\" \/>\n              <label for=\"input_40_73\"> X-23 #12\",2.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_74\" name=\"q40_comics[]\" value=\"X-MEN #14&quot;,3.99\" \/>\n              <label for=\"input_40_74\"> X-MEN #14\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_40_75\" name=\"q40_comics[]\" value=\"ZOMBIES VS ROBOTS UNDERCITY #3 (OF 4)&quot;,3.99\" \/>\n              <label for=\"input_40_75\"> ZOMBIES VS ROBOTS UNDERCITY #3 (OF 4)\",3.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_38\">\n        <label class=\"form-label-left\" id=\"label_38\" for=\"input_38\"> Variants <\/label>\n        <div id=\"cid_38\" 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_38_0\" name=\"q38_variants[]\" value=\"BATMAN AND ROBIN #25 VAR ED&quot;\" \/>\n              <label for=\"input_38_0\"> BATMAN AND ROBIN #25 VAR ED\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_1\" name=\"q38_variants[]\" value=\"FEAR ITSELF #4 (OF 7) IMMONEN VAR FEAR&quot;\" \/>\n              <label for=\"input_38_1\"> FEAR ITSELF #4 (OF 7) IMMONEN VAR FEAR\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_2\" name=\"q38_variants[]\" value=\"FLASHPOINT #3 VAR ED CVR A&quot;\" \/>\n              <label for=\"input_38_2\"> FLASHPOINT #3 VAR ED CVR A\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_3\" name=\"q38_variants[]\" value=\"FLASHPOINT #3 VAR ED CVR B&quot;\" \/>\n              <label for=\"input_38_3\"> FLASHPOINT #3 VAR ED CVR B\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_4\" name=\"q38_variants[]\" value=\"HULK #36 I AM CAPTAIN AMERICA DEODATO VAR&quot;\" \/>\n              <label for=\"input_38_4\"> HULK #36 I AM CAPTAIN AMERICA DEODATO VAR\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_5\" name=\"q38_variants[]\" value=\"VENGEANCE #1 (OF 6) DEODATO VILLAIN VAR&quot;\" \/>\n              <label for=\"input_38_5\"> VENGEANCE #1 (OF 6) DEODATO VILLAIN VAR\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_6\" name=\"q38_variants[]\" value=\"X-MEN #14 I AM CAPTAIN AMERICA HORN VAR&quot;\" \/>\n              <label for=\"input_38_6\"> X-MEN #14 I AM CAPTAIN AMERICA HORN VAR\" <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_38_7\" name=\"q38_variants[]\" value=\"X-MEN #14 MEDINA VAR&quot;\" \/>\n              <label for=\"input_38_7\"> X-MEN #14 MEDINA VAR\" <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_42\">\n        <label class=\"form-label-left\" id=\"label_42\" for=\"input_42\"> Trade Paperbacks <\/label>\n        <div id=\"cid_42\" 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_42_0\" name=\"q42_tradePaperbacks[]\" value=\"CAPTAIN AMERICA FIRST VENGEANCE TP&quot;,14.99\" \/>\n              <label for=\"input_42_0\"> CAPTAIN AMERICA FIRST VENGEANCE TP\",14.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_42_1\" name=\"q42_tradePaperbacks[]\" value=\"CROSSED TP (NEW PTG) VOL 01MR)&quot;,24.99\" \/>\n              <label for=\"input_42_1\"> CROSSED TP (NEW PTG) VOL 01MR)\",24.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_42_2\" name=\"q42_tradePaperbacks[]\" value=\"KICK-ASS TP (RES) (MR)&quot;,19.99\" \/>\n              <label for=\"input_42_2\"> KICK-ASS TP (RES) (MR)\",19.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_42_3\" name=\"q42_tradePaperbacks[]\" value=\"NEGIMA NEO GN VOL 07 (OF 7) (MR)&quot;,10.99\" \/>\n              <label for=\"input_42_3\"> NEGIMA NEO GN VOL 07 (OF 7) (MR)\",10.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_42_4\" name=\"q42_tradePaperbacks[]\" value=\"NORTHLANDERS TP VOL 05 METAL (MR)&quot;,17.99\" \/>\n              <label for=\"input_42_4\"> NORTHLANDERS TP VOL 05 METAL (MR)\",17.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_45\">\n        <label class=\"form-label-left\" id=\"label_45\" for=\"input_45\"> DVDs <\/label>\n        <div id=\"cid_45\" 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_45_0\" name=\"q45_dvds[]\" value=\"QUEENS BLADE 2 THE EVIL EYE DVD PT 01&quot;,16.25\" \/>\n              <label for=\"input_45_0\"> QUEENS BLADE 2 THE EVIL EYE DVD PT 01\",16.25 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_43\">\n        <label class=\"form-label-left\" id=\"label_43\" for=\"input_43\"> Action Figures <\/label>\n        <div id=\"cid_43\" 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_43_0\" name=\"q43_actionFigures[]\" value=\"BRIGHTEST DAY SER 2 FIRESTORM AF&quot;,14.00\" \/>\n              <label for=\"input_43_0\"> BRIGHTEST DAY SER 2 FIRESTORM AF\",14.00 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_43_1\" name=\"q43_actionFigures[]\" value=\"BRIGHTEST DAY SER 2 MARTIAN MANHUNTER AF &quot;,14.00\" \/>\n              <label for=\"input_43_1\"> BRIGHTEST DAY SER 2 MARTIAN MANHUNTER AF \",14.00 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_46\">\n        <label class=\"form-label-left\" id=\"label_46\" for=\"input_46\"> Gaming <\/label>\n        <div id=\"cid_46\" 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_46_0\" name=\"q46_gaming[]\" value=\"GAMEMASTERY FLIPMAT COUNTRY INN&quot;,12.99\" \/>\n              <label for=\"input_46_0\"> GAMEMASTERY FLIPMAT COUNTRY INN\",12.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_46_1\" name=\"q46_gaming[]\" value=\"GAMEMASTERY MAP PACK MAGIC ACADEMY&quot;,12.99\" \/>\n              <label for=\"input_46_1\"> GAMEMASTERY MAP PACK MAGIC ACADEMY\",12.99 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_46_2\" name=\"q46_gaming[]\" value=\"MTG TCG COMMANDER MULTI-PLAYER GAME SET&quot;,29.99\" \/>\n              <label for=\"input_46_2\"> MTG TCG COMMANDER MULTI-PLAYER GAME SET\",29.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_47\">\n        <label class=\"form-label-left\" id=\"label_47\" for=\"input_47\"> Tees <\/label>\n        <div id=\"cid_47\" 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_47_0\" name=\"q47_tees[]\" value=\"MORTAL KOMBAT KLASSIC FLAWLESS VICTORY BLK T\/S XXL&quot;,19.99\" \/>\n              <label for=\"input_47_0\"> MORTAL KOMBAT KLASSIC FLAWLESS VICTORY BLK T\/S XXL\",19.99 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_44\">\n        <label class=\"form-label-left\" id=\"label_44\" for=\"input_44\"> Comic Book Boards <\/label>\n        <div id=\"cid_44\" 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_44_0\" name=\"q44_comicBook44[]\" value=\"ADD BOARDS TO MY BOOKS\" \/>\n              <label for=\"input_44_0\"> ADD BOARDS TO MY BOOKS <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\"> Comments <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <textarea id=\"input_19\" class=\"form-textarea\" name=\"q19_comments19\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\">\n          email:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_15\" name=\"q15_email15\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_13\">\n        <label class=\"form-label-left\" id=\"label_13\" for=\"input_13\">\n          Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_13\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_13\" name=\"q13_name\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_29\">\n        <div id=\"cid_29\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_29\" 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=\"71104404341\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"71104404341-71104404341\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

