
function doFormPost(sVal)
{
	var tbox;
	tbox = document.getElementById('item_name');
	if (tbox)
	{
		tbox.value = sVal;
		tbox.form.action='http://listserv.energy.wsu.edu/subscribe/subscribe.tml';
		tbox.form.method='POST';
		tbox.form.submit();
	}
}
