// JavaScript code for www.dnp-services.com

function onEmailSubmit()
{
	// make sure we get special characters correctly back to the server
	theForm = document.forms["mail"];
	theName = theForm["from_name"].value;
	theAddr = theForm["from_addr"].value;
	theForm["from_name"].value = escape(theName);
	theForm["from_addr"].value = escape(theAddr);
}
