var tinput=document.getElementById("user_to_check_for");
var isfriend=document.getElementById("user_is_friend");
var notfriend=document.getElementById("user_is_not_friend");
tinput.onkeyup=function() {
var tvalue=tinput.value;
if (tvalue=="topherchris") {
isfriend.innerHTML="Shit yeah, motherfucker.";
notfriend.innerHTML="You’re too good for him anyway, honey.";
} else {
isfriend.innerHTML="This user is following you.";
notfriend.innerHTML="This user is not following you.";
}
}