var browser = navigator.appName;
if (browser == 'Microsoft Internet Explorer')
{
	images = new Array(16);
	index = Math.floor(Math.random() * images.length);

	images[0] = '/banner_moz/ban1blue.png';
	images[1] = '/banner_moz/ban2blue.png';
	images[2] = '/banner_moz/ban1red.png';
	images[3] = '/banner_moz/ban2red.png';
	images[4] = '/banner_moz/ban1green.png';
	images[5] = '/banner_moz/ban2green.png';
	images[6] = '/banner_moz/ban1gold.png';
	images[7] = '/banner_moz/ban2gold.png';
	images[8] = '/banner_moz/ban7.png';
	images[9] = '/banner_moz/ban8.png';
	images[10] = '/banner_moz/getfirefox_88x31.png';
	images[11] = '/banner_moz/getfirefox_small.png';
	images[12] = '/banner_moz/firefox_80x15.png';
	images[13] = '/banner_moz/getfirefox_88x31.png';
	images[14] = '/banner_moz/getfirefox_small.png';
	images[15] = '/banner_moz/firefox_80x15.png';

	index = Math.floor(Math.random() * images.length);

	if (1)
	{
		document.write('<center>');
		document.write(
			'<a target="_new" href="http://www.mozilla.org/products/firefox/">' +
			'<img style="margin: 0 0 4px 0" border=0 alt="Try Mozilla!" src="' +
			images[index] +
			'"></a>');
		document.write('</center>');
	}
}

