<?
function is_valid_username($Username){
	if (preg_match('/^[a-zA-Z0-9-_]{1,32}$/', $Username)) return true;
	else return false;
}
?>
