/* LINK MANAGER */
function openInNewWindow( location ) {
	window.open( location );
	return false;
}

function setNewWindowForExternals() {
	var a = document.getElementsByTagName('a');
	
	for ( var i = 0; i < a.length; i++ ) {
		if ( ( a[i].className == 'external' ) || ( a[i].className == 'internal' ) ) 
		{
			a[i].onclick = function() { openInNewWindow(this.href); return false; }
		}
	}
}
