function changeIt(imageToChange, imageToShow) {
	
	if (document.images)
	    document[imageToChange].src = imageToShow;
}

function getSelected(formName) {
  for (i=0;i< document.emailForm[formName].options.length; i++) {
    if (document.emailForm[formName].options[i].selected == true) {
      return document.emailForm[formName].options[i].value;
      break;
    }
  }
}

function setSubject() {
  document.emailForm.subject.value = getSelected("Choice");
  if (document.emailForm.subject.value == "WebMaster") {
    document.emailForm.recipient.value = "znick4@qwest.net";
    alert("Now the recipient value is: "+document.emailForm.recipient.value);
    alert("The subject selected is WebMaster");
  }
}