// UrlLayer
function WorldMapConfig(Country_obj) {
	
	if (Country_obj.txt == 'standard') { text = "From individually tailored leasing plans to financing packages and expert investment advice:<br>BMW Financial Services is ready to assist you in your financial needs.<br><br>Get in touch with BMW Financial Services in your region:<br>simply click on your country.";	}
	else {
		if(Country_obj.txt == 'europa') { text = "Europe:<br>please click on the map for a more detailed map of Europe."; }
		else { text = Country_obj.txt+":<br>simply click on the map to go directly to the "+Country_obj.txt2+" BMW Financial Services website.";}
	}

	LayerInhalt = "<table cellspacing='0' cellpadding='0' border='0' width='160'><tr><td valign='top' width='160'><span class='skcopy'>" + text + "</span></td></tr></table>";
	document.images[MapName].src = Country_obj.src;
	LayerConfig(LayerName, LayerInhalt);
}

function LayerConfig(LayerName, LayerInhalt) {
	
	if (IE) { document.all[LayerName].innerHTML = LayerInhalt; }
	if (N6) { document.getElementById(LayerName).innerHTML = LayerInhalt; }
	if (NN)	{ document.layers[LayerName].document.open();
						document.layers[LayerName].document.write(LayerInhalt);
						document.layers[LayerName].document.close();
	}
}