
// change border color on rollover
function changeBorder(thisimage, thiscolor) {
    document.images[thisimage].style.borderColor=thiscolor;
 
}

// full size image on rollover
function fullView (picture){
	document.fullsize.src = picture;
}

// shows other subject in email forms

function otherDisplay (input, other) {
if (input.options[input.selectedIndex].value=="Other") {
	document.photoform[other].style.display="inline";
	document.photoform[other].focus();
}
else	document.photoform[other].style.display="none";
}


