aryUsers = new Array();
function fAddClient(strClient,strTarget){
	aryUser = new Array();
	aryUser.Client = strClient;
	aryUser.Target = strTarget;
	aryUsers.push(aryUser);
}

function fValidate(){
	strClient = document.getElementById("txtClient").value;
	strTarget = "";
	iSuccess = 0;
	for(i=0;i<aryUsers.length;i++){
		if(aryUsers[i].Client == strClient){
			iSuccess = 1;
			strTarget = aryUsers[i].Target;
		}
	}
	if(iSuccess == 1){
		location.href = strTarget;
	}
}

fAddClient("aireb","http://www.tracikay.com/preview/aireb/");
fAddClient("Joe","http://www.borisphotography.com");