function setAnchorClass()
{
	
	var isIE = (document.documentElement.getAttribute("style") == document.documentElement.style);
	//var isIE = /*@cc_on!@*/0;
	
	var contents = document.getElementById('contentBody');
	var anchors = contents.getElementsByTagName("a");
		
	for(var i = 0; i < anchors.length; i++)
	{
		var anchor = anchors[i];
		
		if(isIE)
		{
			if (anchor.childNodes[0].innerHTML == undefined)
			{
				if (anchor.getAttribute('target') == "_self")
				{
					anchor.setAttribute('className', 'linkA');
				}
				
				if (anchor.getAttribute('target') == "_blank")
				{
					anchor.setAttribute('className', 'linkC');
				}
				
				if (anchor.getAttribute('target') != "_self" && anchor.getAttribute('target') != "_blank")
				{
					anchor.setAttribute('className', 'linkA');
				}
			}
		}
		
		else if(!isIE)
		{
			if (anchor.childNodes[0].innerHTML == undefined)
			{
				if (anchor.getAttribute('target') == "_self")
				{
					anchor.setAttribute('class', 'linkA');
				}
				
				if (anchor.getAttribute('target') == "_blank")
				{
					anchor.setAttribute('class', 'linkC');
				}
				
				if (anchor.getAttribute('target') == null)
				{
					anchor.setAttribute('class', 'linkA');
				}
			}
		}
	}
}