function submit_bulkDeals(){var B=0;var C="";if(trim(document.getElementById("bd_name").value)==""){C="Please enter your Name.";B=1}else{if(trim(document.getElementById("bd_contact").value)==""){C="Please enter your Contact Number.";B=1}else{if(trim(document.getElementById("bd_email").value)==""){C="Please enter your E-mail.";B=1}else{if(!emailCheck(document.getElementById("bd_email").value)){C="Please enter valid E-mail.";B=1}}}}if(!B){var A=new RemoteProcedure("mail_bulkDeals.php?name="+document.getElementById("bd_name").value+"&contact="+document.getElementById("bd_contact").value+"&email="+document.getElementById("bd_email").value,mail_bulkDeals,show_patience)}else{document.getElementById("bd_trId").style.display="block";document.getElementById("errId").innerHTML="<b>"+C+"</b>"}}function mail_bulkDeals(A){if(A.responseText==1){document.getElementById("bd_trId").style.display="block";document.getElementById("errId").innerHTML="<b>Thanks for the request, our customer support team will contact you.</b>"}}function show_patience(){}
