function setpic(newpic,alttext){
    if (navigator.appName=="Netscape") {
      document.getElementsByName("SelectPictureBox")[0].src = newpic;
	  document.getElementsByName("SelectPictureBox")[0].alt = alttext;

    } else {
	  if (document.all){
	  document.images["SelectPictureBox"].src = newpic;
      document.images["SelectPictureBox"].alt = alttext;}
    }
}