1.	Place the two .JS files into your Synchronet Mods Folder.
	
2.	Edit your logon.js (not login) and insert the following 
	at the top of the file: load("logon_first.js");
		
3.	Edit your login.js ... Replace the lines for the create 
	user with: load("create_new_user.js");
		
	==== default login.js starting on approx line #39 ====
	// New user application?
	if(str.toUpperCase()=="NEW") {
	   if(bbs.newuser()) {
		   bbs.logon();
		   exit();
	   }
	   continue;
	}
		
	==== replace with =====================================
	// New user application?
	if(str.toUpperCase()=="NEW") {
		load("create_new_user.js");
		//if(bbs.newuser()) {
		//	bbs.logon();
		//	exit();
		//}
		continue;
	}
