function fncOnLoad() { 
	// Changes target on external links and media
	// To use this function add this in all body tags: onload="fncOnLoad()"
	if (!(null==document.links) && document.links.length>0) {
		for (i=0;i<document.links.length;i++) {
			if ( document.links[ i ].hostname > '' && 'http:' == document.links[ i ].protocol && (document.links[ i ].pathname.toLowerCase().indexOf('showmedium.asp')>0 || document.links[ i ].pathname.toLowerCase().indexOf('edia(')>0 || document.links[ i ].pathname.toLowerCase().indexOf('.pdf')>0 || (document.links[ i ].hostname.toLowerCase().indexOf(document.location.hostname)==-1 ) ))  
				// Change link target to siteExtern
				document.links[ i ].target = 'siteExtern';
		}
	}
}
