function outputFunctionalityNotice ()
{
	theStyle = "text-align:center; color:#990000; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:12px; font-style:italic; font-weight:bold; background-color:#EFCFCF";
	writeText (
					"<div style='" + theStyle + "'>• The content on this page is functional only in the online version of the eWorkshop web site •</div><br/>",
					"<div style='" + theStyle + "'>• Le contenu de cette page peut fonctionner uniquement sur la version en ligne d'Atelier •</div><br/>"
			);
					
}
function outputLinkHome ()
{
	writeText (
					"<a href='index.html' class='homelink'>Home</a>", 
					"<a href='index.html' class='homelink'>Accueil</a>"
			);
}
function outputLinkOther (pageName, txEnglish, txFrench)
{
	if (modID == '4' || modID == '5') pageName += ".html";
	else if (pageName.substr (0, 3) == "mod") pageName += ".html?modID=" + modID;
	else pageName += ".html";
	writeText (
					breadcrumbSeparator + "<a href='" + pageName + "' class='homelink'>" + txEnglish + "</a>", 
					breadcrumbSeparator + "<a href='" + pageName + "' class='homelink'>" + txFrench + "</a>"
			);
}
function outputMockupImage (basicName, theHeight, theWidth)
{
	if (l == "2") imgName = "imagesSpecial/" + basicName + ".fr.fade.jpg";
	else imgName = "imagesSpecial/" + basicName + ".en.fade.jpg";
	tx ("<img src='" + imgName + "' height='" + theHeight + "' width='" + theWidth + "'>");
}
function outputStaticCrumb (txEnglish, txFrench)
{
	try
	{
		if (txFrench.length > 0)
		{
			writeText (
						breadcrumbSeparator + "<b>" + txEnglish + "</b>", 
						breadcrumbSeparator + "<b>" + txFrench + "</b>"
					);
		}
	}
	catch (err)
	{
		tx (breadcrumbSeparator + "<b>" + txEnglish + "</b>");
	}
}


function tx (theText)
{
	document.write (theText);
}
function writeText (txEnglish, txFrench)
{
	if (l == "2") tx (txFrench);
	else tx (txEnglish);
}