function showProductInfo(iResourceId,iLangId) {
	//$('mainIndicator').show();
	new Ajax.Request(
	'http://www.cabrio-mx5.de/ajaxRequest/'+iResourceId+'/getResourceContent/'+iLangId+'.htm',
	{
		method: 'get',
		onFailure: function() {
			alert('FATAL ERROR!');
		},
		onSuccess: function(transport) {
			sContent = transport.responseText;
			$('resourceDetailFrame').setStyle({display: "block"});
			$('resourceDetailFrame').update(sContent);
			//$('mainIndicator').hide();
		}
	}
	);//end - ajax-request
}
