/*
© All rights reserved
Madmedia Communication
geneau@videotron.ca
*/

//-------------------------------------------------------
	function cTextInLayer(sLayerName, sFontName, sFontSize, sFontColor)
	{
		this.pLayerName = sLayerName;
		this.pTextOptions1 = '<font size=' + sFontSize + ' face=' + sFontName + ' color=' + sFontColor + '><b>';
		this.pTextOptions2 = '</b></font>';
	
		this.mShowTextInLayer = fShowTextInLayer;
	}
	//-----------
	function fShowTextInLayer(sText)
	{
		if (navigator.appName == "Netscape")
		{
			document.eval(this.pLayerName).document.write(this.pTextOptions1, sText, this.pTextOptions2); 
			document.eval(this.pLayerName).document.close();
		}
		else
		{
			eval("document.all." + this.pLayerName + ".innerHTML = this.pTextOptions1 + sText + this.pTextOptions2");
		}
	}
//-------------------------------------------------------

/*

<script src = "oTextInLayer.js" language="JavaScript"><!--//--></script>
<script language="JavaScript"><!--
//-------------------------------------------------------

	// Details d'utilisation

	// var oTextInLayer = new cTextInLayer(sLayerName, sFontName, sFontSize, sFontColor);
	// oTextInLayer.mShowTextInLayer(sText);

//-------------------------------------------------------
//--></script>

*/

