if(!document.getElementById)
{
	if(document.all)
	{
		accessObj = function()
		{
			if(typeof document.all[arguments[0]]!="undefined")
				return document.all[arguments[0]];
			else
				return null;
		}
	}
	else if(document.layers)
	{
		accessObj = function()
		{
			if(typeof document[arguments[0]]!="undefined")
				return document[arguments[0]];
			else
				return null;
		}
	}
}
else
{
	accessObj = function()
	{
		return document.getElementById(arguments[0]);
	}
}


function replace()
{
	var warn = accessObj("warnings");
	warn.innerHTML = '<div style="543px; margin-left: auto; margin-right: auto;"><a href="http://get.adobe.com/flashplayer/" title="Download Flash" onclick="window.open(this.href); return false;"><img src="images/noflash.png" alt="To view this site you will need to download Flash"></a></div>';
}