<?php

  // the directory that the script will be in.
  // this gives some flexibility when some fully 
  // qualified paths are needed
$SITEDIR	= "mcudl";

  // which server to use
if (stristr($SERVER_NAME, "mcudl") == true)
	$dbserver  = "mysql.datarealm.com";
else
	$dbserver  = "localhost";

  // which database we are using
$database  = "mcudlproto";
$bbdatabase	= "mcudlbb";

  // prefix for tables used in queries
$dbprefix  = "$database" . ".";
$bbdbprefix	= "$bbdatabase" . ".";

  // db user for connections
$dbuser  = "mcudl";

  // password for dbuser
$dbpwd  = "fi3ld6";

  // cookie that is set when user is logged
$loggedInCookie  = "MCUDLLoggedIn";

	// cookie that has A League Team Id
$aLeagueTeamCookie	= "ALeagueTeam";

	// cookie that has Draft League Team Id
$draftLeagueTeamCookie	= "DraftLeagueTeam";

	// cookie if user is A League Captain
$aLeagueCaptainCookie	= "ALeagueCaptain";

	// cookie if user is Draft League Captain
$draftLeagueCaptainCookie	= "DraftLeagueCaptain";

	// cookie if user is an admin. means it had full rights
$userIsAdminCookie	= "IsAdmin";

?>
