Christian Legal Society
Membership
MU CLS Membership:
Membership in the MU student CLS is voluntary and requires no dues, applications, or statements of faith. MU CLS members are encouraged but not required to be National CLS members.
MU CLS Officers:
MU CLS officers are selected from among those students who are active in the organization during the prior year. There are generally leaders from both the 2L and 3L classes.
2011 - 2012 CLS Officers:
Jacquelyn Brazas
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
if (! isset($_REQUEST["shortnoscript"])) { ?>
Individual e-mail addresses are only viewable by browsers that support JavaScript, in order to prevent spammers from harvesting these addresses from our site. If you'd like the e-mail address of an MU faculty or staff member, please visit the MU People Finder form, or write us at ehs@missouri.edu . If you write us, please include the URL of the page in question. We apologize for the inconvenience.
} else { ?>
[Sorry, e-mail addresses are only visible to JavaScript-enabled browsers]
} ?>
Marcie Mueth
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
if (! isset($_REQUEST["shortnoscript"])) { ?>
Individual e-mail addresses are only viewable by browsers that support JavaScript, in order to prevent spammers from harvesting these addresses from our site. If you'd like the e-mail address of an MU faculty or staff member, please visit the MU People Finder form, or write us at ehs@missouri.edu . If you write us, please include the URL of the page in question. We apologize for the inconvenience.
} else { ?>
[Sorry, e-mail addresses are only visible to JavaScript-enabled browsers]
} ?>
Allyson Walker
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
if (! isset($_REQUEST["shortnoscript"])) { ?>
Individual e-mail addresses are only viewable by browsers that support JavaScript, in order to prevent spammers from harvesting these addresses from our site. If you'd like the e-mail address of an MU faculty or staff member, please visit the MU People Finder form, or write us at ehs@missouri.edu . If you write us, please include the URL of the page in question. We apologize for the inconvenience.
} else { ?>
[Sorry, e-mail addresses are only visible to JavaScript-enabled browsers]
} ?>
Mark Godfrey
// This function simply builds a random string of 12 characters, suitable
// for use as a random function or parameter name.
function BuildName()
{
$name = '';
for ($i = 0; $i < mt_rand(12,23); $i++)
{
if ($i % 2 == 0)
$name .= chr(ord("a") + mt_rand(0,25));
else
$name .= chr(ord("A") + mt_rand(0,25));
}
return $name;
}
// Given a string and an offset, this function
// will create an array of ASCII characters offset by the $offset parameter
function splitString($wholestring,$offset)
{
$pieces = array();
for ($i = 0; $i < strlen($wholestring); $i++)
{
$pieces[] = ord($wholestring{$i}) + $offset;
}
return $pieces;
}
$offsetName = BuildName();
// This is the numeric offset for encoding the ASCII values of e-mail names
$offset = mt_rand(128,2000);
// This is the randomized function name for the e-mail link builder.
$functionName = BuildName();
// This is the randomized parameter name for the Name parameter, which
// is the text to be encapsulated by a link.
$emailName = BuildName();
// This is the randomized parameter name for the tagclass parameter, which
// specifies the class="" to be used in the tag.
$tagclassName = BuildName();
// This is the randomized parameter name for the tagid parameter, which
// specifies the id="" to be used in the tag.
$tagidName = BuildName();
// This is the actual text to be encapsulated in the tag.
$name= $_REQUEST["name"];
// This is the actual address to be encapsulated in the tag.
$address = trim($_REQUEST["address"]);
// $class represents the class name to be used in the tag.
$class = false;
if (isset($_REQUEST["class"]))
$class = trim($_REQUEST["class"]);
$id = false;
if (isset($_REQUEST["id"]))
$id = $_REQUEST["id"];
?>
if (! isset($_REQUEST["shortnoscript"])) { ?>
Individual e-mail addresses are only viewable by browsers that support JavaScript, in order to prevent spammers from harvesting these addresses from our site. If you'd like the e-mail address of an MU faculty or staff member, please visit the MU People Finder form, or write us at ehs@missouri.edu . If you write us, please include the URL of the page in question. We apologize for the inconvenience.
} else { ?>
[Sorry, e-mail addresses are only visible to JavaScript-enabled browsers]
} ?>