function getXterlinks()
// By Thong Nguyen nkthong@yahoo.com
// This code just VIRTUALLY add a target="_Blank" to any external link in the wiki document!
// NOTE: YOU DON"T Need to modify any of your text document!
{
        var Xterlinks = document.getElementsByTagName('A');
        for (var i=0;i<Xterlinks.length;i++)
        { 
                var eachLink = Xterlinks[i];
                var regexp_isYourdomain="www.dikon-elektronik.eu/de"; 
		var regexp_isYourdomain_www="www.dikon-elektronik.eu/en"; 
                var regexp_ishttp=/(http(.)*:\/\/)/;
					 var regexp_pdf = ".pdf";
					 var regexp_jpg = ".jpg";
					 var lowercaseLink = eachLink.href.toLowerCase();
					 
					 //Check if the link is valid and is external link
                if( ( (eachLink.href != null) && (eachLink.href.match(regexp_isYourdomain) == null) && (eachLink.href.match(regexp_isYourdomain_www) == null) && eachLink.href.match(regexp_ishttp)!=null ) 
					 ||  ( lowercaseLink.match(regexp_pdf) != null ) ||  ( lowercaseLink.match(regexp_jpg) != null ) )
                {
                        eachLink.target ="_blank";//make the target for this external link
                }
					 
					 }
}

