function changePerson(name,func,phone,email,pic) {
	document.getElementById("pname").childNodes[0].firstChild.nodeValue = name;
	document.getElementById("function").firstChild.nodeValue = func;
	document.getElementById("phoneNum").firstChild.nodeValue = phone;
	document.getElementById("email").childNodes[0].firstChild.nodeValue = email;
	document.getElementById("email").firstChild.attributes['href'].nodeValue = 'mailto:'+email;
	document.getElementById("picbox").style.backgroundImage = "url("+ pic +")";
}