/**
 * Name			: Register.js 
 * Author		: leitjohn
 * Created on	: Mar 22, 2006
 * Description	: This file provides helpful functionality to registering users
 *   such as checking for good passwords and making sure the username hasn't 
 *   already been taken.
 * Revisions	: None
 */


//**TODO: use to check email address?
/** checks the wft database to see if the username has already been taken */
function checkUsername(username, e_id) {
	addRequest("Username.php?check=" + username ,e_id);
}
