// this function requires jquery.js to run

function lookup(fieldVal) {
	$.post("lookup.php", { "_do": "lookupEmail", "email":fieldVal},
			function(data){
				if(!data) return false;
				
				var subscriptions = "";
				if (data.sound_stories == "1") subscriptions = " - Sound Stories Weekly Email\n";
				if (data.sound_stories_sp == "1") subscriptions = subscriptions + " - Sound Stories Weekly Email (En Espanol)\n";
				if (data.booklet == "1") subscriptions = subscriptions + " - Sound Stories Quarterly Booklet by Mail\n";
				//if (data.digital == "1") subscriptions = subscriptions + " - Sound Stories Quarterly Booklet - Digital Edition\n";
				if (data.seminars == "1") subscriptions = subscriptions + " - Sound Source Monthly Education Newsletter\n";
				if (data.newsletter == "1") subscriptions = subscriptions + " - Thinking Sound Newsletter\n";
				
				if (subscriptions == "") return false;
				
				if (confirm("You are already subscribed to:  \n\n"+subscriptions+"\nIf you would like to add any subscriptions or update your information, click OK.\n\nIf you want to unsubscribe, click Cancel, and use the Unsubscribe form on the right.")) { document.form1.email3.value = fieldVal;
					document.form1.name.value = data.First_Name_;
					document.form1.name2.value = data.Last_Name_;
					document.form1.country.value = data.Country_;
					if (data.Country_ == 'USA') {
					document.form1.state.value = data.State_Province_;
					}
				
				} else {
					document.form1.email.value = "";
					document.form2.email.value = fieldVal;
					if (data.sound_stories == "1") document.form2.email2.checked = "checked";
					if (data.sound_stories_sp == "1") document.form2.stories_sp.checked = "checked";
					//if (data.booklet == "1") document.form2.booklet.checked = "checked";
					if (data.digital == "1") document.form2.digital.checked = "checked";
					if (data.seminars == "1") document.form2.seminars.checked = "checked";
					if (data.newsletter == "1") document.form2.newsletter.checked = "checked";
					
					document.form2.email2.focus();
				}
			},"json");
}
