
function Subscribe()
{
	var name, email, href;
	name = document.getElementById("name").value;
	email = document.getElementById("email").value;

	href = "http://" + window.location.host + "/Subscribe.aspx?Name=" + name + "&Email=" + email;
	window.location = href;
}
