<!--//--><![CDATA[//><!--

//TARGET BLANK

function changeAllLinksWithClassToTargetBlanks() {
	for (i = 0; i < document.links.length; i++) {
		if (document.links[i].getAttribute('class') == 'newWindow' || document.links[i].className == 'newWindow') {
			document.links[i].setAttribute('target', '_blank');
		}
	}
}
window.onload = changeAllLinksWithClassToTargetBlanks;
//--><!]]>