// JavaScript Document

function subscribe(){
	var email = document.getElementById('newsletter_email').value;
	if (email.length > 0) {
		window.location.href='http://orangesites.createsend.com/t/r/s/kyjkt/?cm-kyjkt-kyjkt=' + email;
	} else {
		alert("NEWSLETTER SIGN-UP \n\nPlease enter your email address\n ");
	}
}