// JavaScript Document

function detectBrowser()
{
var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);
if (browser=="Microsoft Internet Explorer")
  {
  document.write('<div align="center" style="width:100%; margin:5px 0 0 0;"><a href="http://platform.fatsecret.com">');
  document.write('<img src="http://platform.fatsecret.com/api/static/images/fatsecret_platform_120_17.gif" border="0">');
  document.write('</a></div>');
  }
else
  {
	document.write('');
  }
}