 /**************************************************************\
 |* Begin forum customisations. Edit this section as required. *|
 |* Note that if you want to include any apostrophes in any of *|
 |* the text, you must escape them using a back slash like     *|
 |* so: \'                                                     *|
 \**************************************************************/



// BASIC FORUM INFO

forumName = 'Classic Fan Fiction';   //The name of the forum as it is to be displayed in PM subjects and in the forum links row


forumID = '10016';   //The forum's ID number that will be used by the common script to generate the ad space content


/*	Below is the name of the directory for the forum in the URLs, i.e. boards.theforce.net/directory_name/b10001/
	For example, the base URL for YJCC is "http://boards.theforce.net/your_jedi_council_community/b10008/" so the
	directory name would be 'your_jedi_council_community' (notice the underscores in place of spaces) */
forumDirectoryName = 'fan_fiction_stories_classic_jc_board_reply_only';


isFanForceForum = false;   //Is this a Fan Force Forum? true or false



// FORUM LINKS

/*	Below, set the locations that the forum and moderator links will be output.
	1 = header only, 2 = footer only, 3 = header and footer, 0 = do not show. */
forumLinksPosition = 1;
modLinksPosition = 1;
epiiibool = 0;


numberOfForumLinks = 10;   //The number of forum links to be displayed


/*	Builds the forum links.
	The syntax is: addForumLink('a','b');
	where a=the URL, b=the link text
	Add or remove extra lines here as needed. */
addForumLink('http://fanfic.theforce.net/','TF.net FanFic Archive'); 
addForumLink('http://boards.theforce.net/fan_fiction_resource/b10304/27417441/p1/?1?','Fan Fiction FAQ');
addForumLink('http://boards.theforce.net/board.asp?brd=10304','Fan Fiction Writer Resource');
addForumLink('http://boards.theforce.net/board.asp?brd=10475','Before the Saga Forum');
addForumLink('http://boards.theforce.net/The_Saga/b10476/','The Saga Forum');
addForumLink('http://boards.theforce.net/board.asp?brd=10477','Beyond the Saga Forum');
addForumLink('http://boards.theforce.net/board.asp?brd=10016','Classic JC Fan Fiction Board'); 
addForumLink('http://boards.theforce.net/fan_fiction_resource/b10304/27588770/','Fan Fiction Index');
addForumLink('http://boards.theforce.net/non_star_wars_fan_fiction/b10808','Non SW Fan Fiction');
addForumLink('http://swfanon.wikia.com/wiki/Main_Page','SW Fanon Wiki');



useStylesheet = true;   //Use the mod stylesheet? true = yes, false = no. If false, the mod usernames will be displayed as ordinary links.



// FORUM MODS

numberOfForumMods = 3;   //The number of mods for this forum


/*	Builds the mod PM links. The syntax is: addModl('a',b,'c');
	where a=the mod's username, b=the mod's user ID, c=the mod's title.
	Add or remove extra lines here as needed. */
addModl("Commander-DWH",994674,"Manager: Fan Fiction");
addModl("mavjade",1213679,"Manager: Fan Fiction");
addModl("Luna_Nightshade",1236187,"Manager: Fan Fiction");
// addModl("Jedi Trace",237400,"Manager: Fan Fiction");




// FORUM ANNOUNCEMENTS

numberOfAnnouncements = 0;   //The number of Announcements for this forum 


scrollx = 0;   //Set scrollx to nonzero to make announcements slide.

/*	Builds the announcements. 
	The syntax is: addAnnouncement("a"); 
	where a=the announcement text and/or html.
	Add or remove extra lines here as needed. */




// AD SPACE

function checkAdSpace() 
{
//Below are the options for the Ad Space.
//Each must be either true or false.

	hasCustomAdSpace = false;   //Will the forum use a custom ad space in the header?
	hasCustomNoAdsAdSpace = false;   //Will the forum use a custom ad space in the post reply header? This is irrelevant if the above is true.
	canSearchThisForum = true;   //Should the "search this forum" feature be used? (This should be false on private boards.)
	showDropDowns = false;   //This should always be true
	showAdSpaceBottom = false;   //This should be false unless you want to display the custom ad space on the bottom of the page as well as the top
	showNoAdsAdSpaceBottom = false;   //This should be false unless you want to display the post reply custom ad space on the bottom of the page as well as the top
}



function customHeaderAdSpaceContent()
{
//Specify the variables for the custom Ad Space
//NOTE: If "hasCustomAdSpace" specified above is false, these settings are irrelevant

	var useCustomHTML = false;   //Specify whether or not to use custom HTML instead of the ad row
	var useAdRow = true;   //Specifiy whether or not to use the standard ad row instead of custom HTML. This is irrelevant if the above is true.
	var showAdHolders = true;   //Specify whether or not to show the ad holders in the ad row
	var imgSrc = '';   //Specify the source of the ad image or enter "false" without quotes.
	var linkSrc = '';   //Specify the link for the ad image or enter "false" without quotes.

	var content = '';   //Do not edit this
	var customHTML = '';   //Do not edit this
	
	if (useCustomHTML) {
		customHTML += '<div style="text-align:center; padding:10px">\r';
		customHTML += '\r';
		
		////////////////////////////////////////////////////////////////////////////////////////////
		// Below, specify the custom HTML for the ad space, if applicable. 
		// The syntax is: customHTML += 'a';
		// where a=your custom HTML. Add or remove extra lines here as needed.
		customHTML += '';
		////////////////////////////////////////////////////////////////////////////////////////////
		
		customHTML += '\r';
		customHTML += '</div>\r';
	}

	content += customAdSpaceContent(useCustomHTML,useAdRow,showAdHolders,imgSrc,linkSrc,customHTML);

	return content;
}



function customNoAdsHeaderAdSpaceContent()
{
//Specify the variables for the custom Ad Space on the Post Reply page
//NOTE: If "hasCustomNoAdsAdSpace" specified above is false, these settings are irrelevant

	var useCustomHTML = false;   //Specify whether or not to use custom HTML instead of the ad row
	var useAdRow = true;   //Specifiy whether or not to use the standard ad row instead of custom HTML. This is irrelevant if the above is true.
	var showAdHolders = false;   //Specify whether or not to show the ad holders in the ad row
	var imgSrc = '';   //Specify the source of the ad image or enter "false" without quotes.
	var linkSrc = '';   //Specify the link for the ad image or enter "false" without quotes.

	var content = '';   //Do not edit this
	var customHTML = '';   //Do not edit this
	
	if (useCustomHTML) {
		customHTML += '<div style="text-align:center; padding:10px">\r';
		customHTML += '\r';
		
		////////////////////////////////////////////////////////////////////////////////////////////
		// Below, specify the custom HTML for the ad space, if applicable
		// The syntax is: customHTML += 'a';
		// where a=your custom HTML. Add or remove extra lines here as needed.
		customHTML += '';
		////////////////////////////////////////////////////////////////////////////////////////////
		
		customHTML += '\r';
		customHTML += '</div>\r';
	}

	content += customAdSpaceContent(useCustomHTML,useAdRow,showAdHolders,imgSrc,linkSrc,customHTML);

	return content;
}


/**************************************************************\
|* End forum customisations. Do not edit anything below here. *|
\**************************************************************/




outputForumHeaderFooter(forumName);   //Begin outputting the forum header/footer

