var spacerWidth
var bulletName
var isMac
if (isMac)
{
	if(navigator.appName == "Microsoft Internet Explorer")
		{
		//Mac MSIE
		spacerWidth = 34
		bulletName = "bulletIE.gif"
		}
	else
		{
		//Mac Netscape
		spacerWidth = 43
		bulletName = "bulletNetMac.gif"
		}
}
else
{
	if(navigator.appName == "Microsoft Internet Explorer")
		{
		//PC MSIE
		spacerWidth = 34
		bulletName = "bulletIE.gif"
		}
	else
		{
		//PC Netscape
		spacerWidth = 35
		bulletName = "bullet.gif"
		}

}
var margin = "<td nowrap width=" + spacerWidth + "></td>";

var bullet = "<img src='images\/" + bulletName + "'>";