/* erzeugt link-eintrag fuer galerie-rss --- ah 20050905 ngrhldm24@schule.suedtirol.it */

/*
workspace, chapter, scope, are defined in template
*/

rsstitle = 'neue Galerieseiten';
url = new String(document.URL);
a = url.split('/');
fromhtm = a[a.length-1];
content = '<link rel=\"alternate\" ' +
				'type=\"application/rss+xml\" ' +
				'title=\"' + workspace + ': ' + rsstitle + '\" ' +
				'href=\"http://www.blikk.it/scripts/rss.php?' +
					'workspace=' + workspace +
					'&chapter=' + chapter +
					'&scope=' + scope +
					'&fromhtm=' + fromhtm +
					'&action=read' +
					'\">';
document.write(content);
//alert(content);

