function newsletterFrom(doWhat)
{
	var query = document.getElementById('emailAddress').value;
	//var searchIt =  replaceChars(query,' ','+');
	if (doWhat == 'add') {
	window.location='http://www.daylightnetworks.net/add.php?do=newsletter&email='+query;
	} else if (doWhat == 'rem') {
	window.location='http://www.daylightnetworks.net/rem.php?do=newsletter&email='+query;
	}
}