POST passing varibles and external files HELP

OK i have a couple questions and need some help. I’m creating a two feild form that sends one important variable to the ASP file (path). The code below works like a charm for passing the information (var path), BUT my question is would it be possible to create an xml or text file that would be easier to maintain, but could pull the values and POST them the to asp file to dynamiclly create the page? If I have 50 people, it will get tiresome and difficult to manage to do 50 “if else” statements. It seems there’s got to be a way do one “IF” statement have it go through the xml/text file and return the correct var for path:

on (press) {
var name
var job
var path
if (name === “josh” and job === “webdesigner”){
path = “/webfiles”;
getURL(“http://www.mydomain.com/FlashAction/files.asp”, “”, “POST”);
}
else if (name === “marc” and job === “webmaster”) {
path = “/webfile2”;
getURL(“http://www.mydomain.com/FlashAction/files.asp”, “”, “POST”);
}