Sell Us Your Product

Send us some photos of your item and receive a quote within 48 hours. Just upload a 2 photos and we'll be in contact shortly. 

 Loading Uploadthingy file upload form...

If your upload form doesn't display within a few seconds, please check the FAQ or contact us at [email protected]. We'd love to help out!

var sitecode="ZGVzaWduZXJjYXJ0ZWwuYmlnY2FydGVsLmNvbQ==";
authupload();
function getUploadForm(json) {
showblinks=false;
var h="";
h+="<p style='color:gray;'>Your name<br>";
h+="<input type=text style='width:400px;' id='uploader_name' name='uploader_name'></p>";
h+="<p style='color:gray;'>How we can contact you<br>";
h+="<input type=text style='width:400px;' id='uploader_contact' name='uploader_contact'></p>";
h+="<p style='color:gray;'>Your message<br>";
h+="<textarea style='width:400px; height:100px;' id='uploader_description' name='uploader_description'></textarea></p>";
h+="<p style='color:gray;'>Files<br>";
h+="<input type='file' size='40' id='uploadfile0' name='file0'><br>";
h+="<input type='file' size='40' id='uploadfile1' name='file1'><br>";
h+="</p>";
h+="<input type='hidden' id='authcode' name='authcode' value='"+json.c+"'>";
h+="<input type='hidden' id='uploadid' name='id' value='widget$"+json.d+"$"+json.c.substring(0,json.c.indexOf("_"))+"'>";
h+="<input type='hidden' id='callbackurl' name='callbackurl' value='"+baseserverurl+"'>";
h+="<input type='hidden' name='savemeta' value='yes'>";
h+="<p><input class='widget_button' id='49widget_submitbutton' type='button' onclick='doUpload();' name='suploadvideo' value='Upload'></p>";
return h;
}
function doUpload() { if (checkform()) { upload('start'); } }
function checkform() {
var found=false;
var cnt=0;
while (document.getElementById('uploadfile'+cnt)) {
if (document.getElementById('uploadfile'+cnt).value.length>0) {
found=true;
break;
}
cnt++;
}
if (!found) {
alert('Please select at least one file to upload.');
return false;
}
uploadmetadata=new Array();
uploadmetadata['name']=document.getElementById('uploader_name').value;
uploadmetadata['contact']=document.getElementById('uploader_contact').value;
uploadmetadata['description']=document.getElementById('uploader_description').value;
uploadmetadata['uploadfile0']=document.getElementById('uploadfile0').value;
uploadmetadata['uploadfile1']=document.getElementById('uploadfile1').value;
return true;
}