var strDocWrite;

//Function to render FnWebPost1 ActiveX control in IE browser
function renderObjectNeighbourhood()
{
	strDocWrite='<OBJECT CLASSID="clsid:EA8A45EF-B003-11D2-8136-00104B319685"';
	strDocWrite+=' id="FnWebPost1" onerror="javascript:IDMWSC_IDMBar_redirToDownload()"';
	strDocWrite+=' width="0" height="0" CODEBASE="#Version=' + RequiredVersion + '" ></OBJECT>';
	document.write(strDocWrite);
}

//Function to render FnWebPost1 ActiveX control in other browsers except IE
function renderEmbedNeighbourhood()
{
	strDocWrite='<EMBED classid="clsid:EA8A45EF-B003-11D2-8136-00104B319685" name="FnWebPost1"';
	strDocWrite+=' id="FnWebPost1" width="1" height="1" type="application/oleobject" LIVECONNECT></EMBED>';
	document.write(strDocWrite);
}