// JavaScript Document
function setName(handle, name) {
	if((handle != 0) && (name != 0)) {
		html = "<strong>" + handle + "</strong> | " + name;
	} else {
		html = "<strong>Team Carnage</strong>"
	}
	document.getElementById("player").innerHTML = html;
}