function postFormNameValue(name, value, destination)
{
	var form = document.getElementById('AtnlForm');
	var nameInput = document.getElementById('AtnlFormPostName');
	var valueInput = document.getElementById('AtnlFormPostValue');
	
	nameInput.value = name;
	valueInput.value = value;
	
	if (destination)
	{
		form.action=destination;
	}
	form.method='post';
	form.submit();
	return false;
}

function getDestination(destination)
{
	var form = document.getElementById('AtnlForm');
	form.action=destination;
	form.method='get';
	form.submit();
	return false;
}
