function writeAddr() {
 // Build the address
 var i,a=writeAddr.arguments,addr="";
 addr += a[0]+"@";
 for( i=1; i<a.length; i++ ) {
 if( i>1 ) addr += ".";
 addr += a[i];
 }
 // Write html to the browser with the email address
 document.write("<a href=\"mailto:" + addr + "\">" + addr + "</a>");
 }
 

/* next 3 functions autofill Supervisor form fields in HR app
--------------------------------------------------------------- */
function grabPhone(putPhone, getPhone){
	document.getElementById(putPhone).value = document.getElementById(getPhone).value;
	}
	
function cleanPhone(putPhone){
	document.getElementById(putPhone).value = "";
	}


function togglePhone(box, fill, fillfrom) {
	if (document.getElementById(box).checked == true) {
		grabPhone(fill, fillfrom);
		} else {
		cleanPhone(fill);
		}
	}

/* --------------------------------------------------------------- */	
