		
			var DOM = false;
 		
 			if (document.getElementById) 
 			{
 				DOM = true;
 			}
 			
 			if (document.all) 
 			{
 				browser="IE";
 				DOM = false;
 			}
			else browser="NS";			
		
			if(browser == "NS") 
			{
				document.captureEvents(Event.MOUSEMOVE);
			    document.onmousemove=handleMove;
			}
			
                        function my_open(link,heigth,width,resize,scrollit)
                        {
                                sit = "hotkeys=no,location=no,menubar=no,resizable="+resize+",scrollbars="+scrollit+",toolbar=no,status=yes,height="+heigth+",width="+width; 
                                window.open(link,"popup_me",sit);
                        }
	
			
			function handleMove(ev)
			{
				Event = ev;
				x = Event.screenX;
				y = Event.screenY;
			}
			
			function show_manual(type)
			{
				if (DOM)
				{
					corrx = 0;
					document.getElementById(type).style.visibility = 'visible';
					document.getElementById(type).style.top = y -130;
					document.getElementById(type).style.left = x - 120 - corrx;
				}	
				else
				{
				if (browser == "IE")
				{
					corry = document.body.scrollTop;
					corrx = document.body.scrollLeft;
					//alert(corry);
					eval("document.all."+type+".style.visibility = 'visible';");
					eval("document.all."+type+".style.top = "+(window.event.y + corry)+";");
					eval("document.all."+type+".style.left ="+(window.event.x - 120 + corrx)+";");
				}
				else
				{
					corry = 0;
					//document.pageYOffset;
					eval("document.layers."+type+".top = "+y+corry+" - 130;");
					eval("document.layers."+type+".left = "+x+" -120;");
					eval("document.layers."+type+".visibility = 'show';");
					//alert(document.layers.pie.visibility);
				}
				}
				active = type;
			}
			
			function hide_manual()
			{
				if (DOM)
				{
					document.getElementById(active).style.visibility = 'hidden';
				}
				else
				{
					if (browser == "IE")
					{
						eval("document.all."+active+".style.visibility = 'hidden';");
					}
					else
					{
						eval("document.layers."+active+".visibility = 'hide';");
					}
				}
			}
		
		function link_obj(wkn,link)
		{
			this.wkn = wkn;
			this.link= link;
		}
			
		function is_spec(link)
		{
			help = link.split("wkn=");
			if (help.length == 1)
			{
				return link;
			}
			nr = help[1].split("&")[0];
			nr_handler = new Array();
			nr_handler[0] = new link_obj("765435","itracker_portrait.htm?WKN=765435");
			nr_handler[1] = new link_obj("765438","itracker_portrait.htm?WKN=765438");
			nr_handler[2] = new link_obj("765442","itracker_portrait.htm?WKN=765442");
			nr_handler[3] = new link_obj("765439","itracker_portrait.htm?WKN=765439");
			nr_handler[4] = new link_obj("765436","itracker_portrait.htm?WKN=765436");
			nr_handler[5] = new link_obj("765437","itracker_portrait.htm?WKN=765437");
			nr_handler[6] = new link_obj("765441","itracker_portrait.htm?WKN=7654441");
			nr_handler[7] = new link_obj("798071","etf_portrait.htm?WKN=798071");
			nr_handler[8] = new link_obj("798073","etf_portrait.htm?WKN=798073");
			nr_handler[9] = new link_obj("765443","index.php?link=itracker_WKN.htm&WKN=765443");
			nr_handler[10] = new link_obj("765433","itracker_portrait.htm?WKN=765433");
			nr_handler[11] = new link_obj("765434","itracker_portrait.htm?WKN=765434");

			for (nri=0; nri<nr_handler.length;nri++)
			{
				if (nr_handler[nri].wkn == nr)
				{
					this.location.href = nr_handler[nri].link;
					return false;
				}
			}
			return (link);
		}
		
		function jump(link)
    	{
    		help = is_spec(link);
    		if (help)
    		{
    			document.location.href=help;
    		}
    		return false;
    	}
    	
    	function jump_new(wert)
    	{
    		val = wert.split("|");
    		ort = val[0];
    		wkn = val[1];
		detailid = val[2];
		if (detailid == "")
		{
			detailid = "snapshot"; 
		}
    		if (ort == "uid")
    		{
    			this.location.href = "fondsportal.php?wkn="+wkn+"&detailID="+detailid;
    		}
    		else
    		{
    			window.open("http://www.unico-fonds.de/fondsportal/fondsportal.php?wkn="+wkn+"&detailID="+detailid,"portrait");
    		}
    		
    		return false;
    	}
    	
    	function stat(stat_s)
    	{
    		status = "";
    	}
    	
    	function nostat()
    	{
    		status="";
    	}
    	                                                                
    	
    	function high(it)
    	{
    		if (browser == "IE")
    		{
    			the_old_color =  eval('document.all.'+it+'.style.backgroundColor');
    			eval('document.all.'+it+'.style.backgroundColor = "#B7D2ED";');
    		}
    		return;
    	}
    	
    	function low(it)
    	{
    		if (browser == "IE")
    		{
    			color_help = 'document.all.'+it+'.style.backgroundColor = "'+the_old_color+'";';
			eval(color_help);
		}
    		return;
    	}

