// JavaScript Document
var EMAILLISTS_HOST = "emaillists.aish.com";
function submitSignup(frmSignupName)
{
	//document.location = "http://72.2.112.216/lists/subscribeToSingleList.php?l=" + listId +"&email="+email +"&previousPage="+previousPage;
	frmObj = document.getElementById(frmSignupName);
	document.location = "http://"+EMAILLISTS_HOST+"/subscribeToSingleList.php?l=" + frmObj.listId.value +"&email="+frmObj.email.value +"&previousPage="+frmObj.previousPage.value;
}
