 /**************************************************************\
 |* 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 = 'Fan Films, Fan Audio & Scifi 3D';   //The name of the forum as it is to be displayed in PM subjects and in the forum links row


forumID = '10015';   //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_films_fan_audio_scifi_3d_forum';


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://www.fanfilms.com/','TFN FanFilms');
addForumLink('http://theforce.net/fanfilms/faq/forumfaq.asp','Forum FAQ');
addForumLink('http://boards.theforce.net/fan_films/b10015/27787032/','Social Thread');
addForumLink('http://boards.theforce.net/Fan_Films/b10015/21278629/','Tutorials');
// addForumLink('http://fanfilms.theforce.net/User_index.asp','Cast and Crew Database');

addForumLink('http://scifi3d.com/','Scifi 3D Links: SCIFI 3D');
addForumLink('http://scifi-meshes.com/','SCIFI-MESHES');
addForumLink('http://www.cgsociety.org/','CG SOCIETY');
addForumLink('http://3dtotal.com/','3D TOTAL');
addForumLink('http://cgchannel.com/','CG CHANNEL');
addForumLink('http://foundation3d.com/','Foundation 3D');



useStylesheet = true;   //Use the mod stylesheet? true = yes, false = no. If false, the mod usernames will be displayed as ordinary links.



// FORUM MODS

numberOfForumMods = 2;   //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('AdamBertocci',619609,'Manager: Fan Films, Fan Audio, & Scifi 3D');
addModl('DVeditor',572785,'Manager: Fan Films,Fan Audio, & Scifi 3D');



// 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
