function addSubscriber() {
	email = $("#email_address").val();
	first_name = $("#first_name").val();
	last_name = $("#last_name").val();

	$.post("./content/common/common.add_subscriber.php",
  		{ first_name: first_name, last_name: last_name, email: email},
  			function(data){
  				if (data) {
  						$('#registerka').show().html(data);
					} else {
					}
  			}
			);
}

function addSubscriberHome() {
	email = $("#email_address_home").val();

	$.post("./content/common/common.add_subscriber.php",
  		{ email: email},
  			function(data){
  				if (data) {
					} else {
					}
  			}
			);
}

function addSubscriberMid() {
	email = $("#email_address_mid").val();
	$.post("./content/common/common.add_subscriber.php",
  		{ email: email},
  			function(data){
  				if (data) {
					} else {
					}
  			}
			);
	
}

function addSubscriberBot() {
	email = $("#email_address_bot").val();
		$.post("./content/common/common.add_subscriber.php",
  		{ email: email},
  			function(data){
  				if (data) {
					} else {
					}
  			}
			);
		
		document.homepage_bottom.action = "http://www.otcmarketbulls.com/thank-you.html";
		document.homepage_bottom.submit();
	
}

function addSubscriberBanner() {
	email = $("#banner_email").val();
		$.post("./content/common/common.add_subscriber.php",
  		{ email: email},
  			function(data){
  				if (data) {
					} else {
					}
  			}
			);

		document.homepage_botb.action = "http://www.otcmarketbulls.com/thank-you.html";
		document.homepage_botb.submit();

	
}