// JavaScript Document
// jquery


function username(t){
	
 $("span#userid").load("ajax.php?username="+t+"&randval="+ Math.random());
};
function emailone(t){
	
 $("span#emailid").load("ajax.php?email="+t+"&randval="+ Math.random());
};
function playername(t){
	
 $("span#nickid").load("ajax.php?nick="+t+"&randval="+ Math.random());
};
function emailtwo(t){
	
	var e = document.getElementById('email').value;
 $("span#emailidtwo").load("ajax.php?email1="+t+"&email2="+e+"&randval="+ Math.random());
};