function setRecipients() {
	if (document.getElementById("setrecipient") != null)
		document.getElementById("setrecipient").style.display = "none";
    var newValue = 0;
	if (document.getElementById("recipient") != null)
	    newValue = document.getElementById("recipient").value;
	if (document.getElementById("recipient1") != null)
		document.getElementById("recipient1").value = newValue;
	//else
	//	alert("recipient1 not found: " + newValue);
	if (document.getElementById("recipient2") != null)
		document.getElementById("recipient2").value = newValue;
	//else
	//	alert("recipient2 not found: " + newValue);
}
//run on window.Load;
addLoadEvent(setRecipients);