/* JavaScript Funktion um Addcontent in korrekten DIV zu schreiben */
function GetAddContent() {
	try {
		var AddContent = '';
		if(document.getElementById('FM_Downloadbox') && document.getElementById('FM_Downloadbox') != null) {
			AddContent = '<div id="FM_Downloadbox_Add">' + document.getElementById('FM_Downloadbox').innerHTML + '</div>';
			document.getElementById('FM_Content_Add').innerHTML = AddContent;
		} else {
			for(i=1; i<=20; i++) {
				if(document.getElementById('FM_Downloadbox_'+i) && document.getElementById('FM_Downloadbox_'+i) != null) {
					AddContent = AddContent + document.getElementById('FM_Downloadbox_'+i).innerHTML;	
				}
			}
			AddContent = '<div id="FM_Downloadbox_Add">' + AddContent + '</div>';
			document.getElementById('FM_Content_Add').innerHTML = AddContent;
		}
	} catch(err) {}
}

window.onload  = function() {
  GetAddContent()
};
