document.addEventListener("DOMContentLoaded", function() {
var urlParams = new URLSearchParams(window.location.search);
var companyType = urlParams.get("company_type"); // Ensure this matches the HubSpot field name
if (companyType && companyType.toLowerCase() === "vendor") {
setTimeout(function() {
window.location.href = "http://www.netvendor.com/vendor-thank-you";
}, 3000); // Redirects after 3 seconds
}
});