
/* sifr.js must be referenced in order to use this object */
function SifrObject( strSelector, strFlashSrc, strColor, strLinkColor, strHoverColor, strWmode)
{
	this.Selector = strSelector;
	this.FlashSrc = strFlashSrc;
	this.Color = strColor;
	this.strLinkColor = strLinkColor;
	this.HoverColor = strHoverColor;
	this.Wmode = strWmode;
}

SifrObject.prototype.replaceElement = function()
{
	sIFR.replaceElement
	(
		named
		(
			{
				sSelector: this.Selector, 
				sFlashSrc: this.FlashSrc, 
				sColor: this.Color, 
				sLinkColor: this.LinkColor, 
				sHoverColor: this.HoverColor, 
				sWmode: this.Wmode
			}
		)
	);
}
