var baserefNav = "http://gisweb.vwd.com/mel/eyecatcher/";
  
  	var navImg = new Array();
  	navImg['dax'] = "img/dax_vr.gif"
  	navImg['tecdax'] = "img/tecdax_vr.gif"
  	navImg['estoxx'] = "img/estoxx_vr.gif"
  	navImg['eurusd'] = "img/eurusd_vr.gif"
  
  	var chartImg = new Array();
  	chartImg['dax_day'] = "http://gisweb.vwd.com/mel/308/chartNG.gfn?chartType=0&overTime=3&eyecatcher=1&subProperty=11&height=77&width=154&time=0&instrumentId=159096"
  	chartImg['tecdax_day'] = "http://gisweb.vwd.com/mel/308/chartNG.gfn?chartType=0&overTime=3&eyecatcher=1&subProperty=11&height=77&width=154&time=0&instrumentId=158375"
  	chartImg['estoxx_day'] = "http://gisweb.vwd.com/mel/308/chartNG.gfn?chartType=0&overTime=3&eyecatcher=1&subProperty=11&height=77&width=154&time=0&instrumentId=159194"
  	chartImg['eurusd_day'] = "http://gisweb.vwd.com/mel/308/chartNG.gfn?chartType=0&overTime=3&eyecatcher=1&subProperty=11&height=77&width=154&time=0&instrumentId=2079559"
  
  	var chartLink = new Array();
    var pre = "http://www.boerse.vr-networld.de/index.html?bankid=0953&gbr=XC&home=www.rb-os.de&blz=75062026&firma=Raiffeisenbank%20Oberpfalz%20S%FCd%20eG&ind=&gadt=eyes&type=eyes";
  	chartLink['dax'] = pre+"&i=159096&wkn=DAX.ETR"
  	chartLink['tecdax'] = pre+"&i=158375&wkn=TDXP.ETR"
  	chartLink['estoxx'] = pre+"&i=159194&wkn=SX5E.DJX"
  	chartLink['eurusd'] = pre+"&i=2079559&wkn=DUSDEUR.TGT"
  
  	var cur_chart = "dax";
  	var cur_mode = "day";
  
  	function switch_to_dax()
  	{
  		cur_chart = "dax";
  		switch_chart();
  	}
  
  	function switch_to_tecdax()
  	{
  		cur_chart = "tecdax";
  		switch_chart();
  	}
  
  	function switch_to_estoxx()
  	{
  		cur_chart = "estoxx";
  		switch_chart();
  	}
  
  	function switch_to_eurusd()
  	{
  		cur_chart = "eurusd";
  		switch_chart();
  	}
  
  	function switch_chart()
  	{
  		document.mf_nav.src = baserefNav+navImg[cur_chart];
  		document.getElementById("mf_link").href = chartLink[cur_chart];
  		document.mf_chart.src = chartImg[cur_chart + '_' + cur_mode];
  		return;
  	}
  
  	var chart_map =	( '<map name="mf_nav_bar"><area alt="Chart des DAX-Performance-Index." shape="rect" coords="0,1,36,16" onmouseover="switch_to_dax();return true" onMouseOut="window.status = \'\'; return true;">'+
  					  '<area alt="Chart des TecDAX-Performance-Index." shape="rect" coords="38,1,75,16" onmouseover="switch_to_tecdax(); return true" onMouseOut="window.status = \'\'; return true;">'+
  					  '<area alt="Chart des Euro Stoxx 50-Index." shape="rect" coords="77,1,114,16" onmouseover="switch_to_estoxx(); return true;" onMouseOut="window.status = \'\'; return true;">'+
  					  '<area alt="Chart des Euro / US-Dollar Kurses." shape="rect" coords="116,1,154,16" onmouseover="switch_to_eurusd(); return true;" onMouseOut="window.status = \'\'; return true;"></map>'
  					);
