/* erzeugt link-eintrag fuer foren-rss --- ah 20050905 ngrhldm24@schule.suedtirol.it */

/*
workspace, chapter, scope, are defined in template
*/

rsstitle = 'neue Beiträge';
url = _blikk.decodeURL();
a = url.url.split('/');
fromhtm = a[a.length-1];
content = '<link rel=\"alternate\" ' +
				'type=\"application/rss+xml\" ' +
				'title=\"' + workspace + ': ' + rsstitle + '\" ' +
				'href=\"rss.php3?' +
					'workspace=' + workspace +
					'&chapter=' + chapter +
					'&scope=' + scope +
					'&fromhtm=' + fromhtm +
					'&action=read' +
					'&bn=' + url.bn +
					'\">';
document.write(content);
//alert(content);

