	/********************/
	/* Translation Menü */
	/********************/
	function myshowtxt(which_id){
           if (document.getElementById(which_id).style.display=="none")
           javascript:document.getElementById(which_id).style.display='block';
           else javascript:document.getElementById(which_id).style.display='none';
         }

	/****************************/
	/* target="_blank" einfügen */
	/****************************/
         function setExternalLinks() {
	  if (!document.getElementsByTagName) {
        	    return null;
    	  }
	  var anchors = document.getElementsByTagName("a");
	  for (var i=0;i < anchors.length;i++) {
        	    var anchor = anchors[i];
	    if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "nofollow") {
               anchor.setAttribute("target", "_blank");
        	    }
    	  }
	}
	window.onload = setExternalLinks;

	/******************/
	/* ICQ2GO Konsole */
	/******************/
         function openClient(client_type) {
           if (client_type=="java") {
             clientWindow=window.open("http://download.icq.com/icq2go/web.html","ICQ2Go","left=20,top=20,width=256,height=446,toolbar=0,resizable=0");
           }
           else {
/*             clientWindow=window.open("http://download.icq.com/icq2go/flicq.html","ICQ2Go","left=20,top=20,width=176,height=441,toolbar=0,status=0,resizable=0"); */
             clientWindow=window.open("http://download.icq.com/icq2go/flicq.html","ICQ2Go","left=20,top=20,width=336,height=441,toolbar=0,status=0,resizable=1");
           }
         }
