// SWAP IMAGE
function swapImg(imagefile,which) {
	document[which].src = imagefile ;
}
// FOCUS or CLICK FIELD
function focusField(theChosen) {
	document.getElementById(theChosen).focus();
	document.getElementById(theChosen).select();
}
// SUBMIT FORM
function submitform() {
	document.forms["sendmail"].submit() ;
}
