/* erzeugt iframe für forum-inhalte ah 20050905 ngrhldm24@schule.suedtirol.it */

/*
workspace, chapter, scope are defined in template
forumlink defined by user
*/

// serverurl - change here
serverurl = 'http://zeus.provinz.bz.it/w-agora/forum.php';
//serverurl = 'http://ahspc/w-agora/forum.php';

url = new String(document.URL);
a = url.split('/');
fromhtm = a[a.length-1];

if (document.getElementById('linkforumanhang')) {
	forumlink = document.getElementById('linkforumanhang').href;
	fl = forumlink.split('&');
	forumlink = fl.join('::');
} else {
	forumlink = '';
}

//alert(forumlink);

try {

	content = '<script src=\"' + serverurl + '?' +
						'workspace=' + workspace +
						'&chapter=' + chapter +
						'&anztyp=' + anztyp +
						'&zeilenlaenge =' + zeilenlaenge +
						'&scope=' + scope +
						'&fromhtm=' + fromhtm +
						'&forumlink=' + encodeURI(forumlink) +
						'&action=read' +
						'\" type=\"text/javascript\"><\/script>';
	//document.write(content);
	
} catch(error) {
}

//alert(content);

