function cs_zoom_in(id,code,url_path) {
	var date = new Date();
	var seconds = date.getTime();
    sys_ajax_process_url(xmlHttp_1,url_path + '/scripts/funktionen/cs.ajax.news_content.php?id='+ id + '&code=' + code + '&action=in' + '&' +seconds,'','cs_zoom_content','',id);
}

function cs_zoom_out(id,code,url_path) {
	var date = new Date();
	var seconds = date.getTime();
    sys_ajax_process_url(xmlHttp_1,url_path + '/scripts/funktionen/cs.ajax.news_content.php?id='+ id + '&code=' + code + '&action=out' + '&' +seconds,'','cs_zoom_content','',id);
}

function cs_zoom_content(content,id) {
    document.getElementById('news_' + id).innerHTML=content;
}