
function sampleSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('sampleSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}

function newsletterSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('newsletterSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}

function whitepaperSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('whitepaperSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}

function raffleSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('raffleSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}

function auditwizardSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('auditwizardSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}

function resourcesSubmit(divid) {
	url = "/samples-and-promotions/sampleProcess.ajax.php";
	params = "";
	
	$('resourcesSignupForm').request({
  		onComplete: function(transport){ $(divid).innerHTML = transport.responseText; }
		});
}
