window.onload = initForm;
function initForm(){
		//document.getElementById("subject").selectedIndex = 0;
		document.getElementById("subject").onchange = setRecipient;
		placeFocus();
}
function setRecipient(){
		var names = new Array("", "Suanna Gurovich", "Suanna Gurovich", "Suanna Gurovich", "Suanna Gurovich");
		var subjectStr = this.options[this.selectedIndex].value;
		if(subjectStr != ""){
				var theRecipient = parseInt(subjectStr);
				//document.getElementById("recipient").value = "";
				if(theRecipient == 0){
					document.getElementById("recipient").value = names[theRecipient];
				} else if(theRecipient == 1){
					document.getElementById("recipient").value = names[theRecipient];
				} else if(theRecipient == 2){
					document.getElementById("recipient").value = names[theRecipient];
				} else if(theRecipient == 3){
					document.getElementById("recipient").value = names[theRecipient];
				} else if(theRecipient == 4){
					document.getElementById("recipient").value = names[theRecipient];
				}
		}
}
function placeFocus() {
if (document.forms.length > 0) {
var field = document.forms[0];
for (i = 0; i < field.length; i++) {
if ((field.elements[i].type == "text") || (field.elements[i].type == "textarea") || (field.elements[i].type.toString().charAt(0) == "s")) {
document.forms[0].elements[i].focus();
break;
         }
      }
   }
}