function writeswf() {
	var querystr = '?startpos=Hannover&startposref=mun';
	var movie_file = '123map.swf';
	var movie_path = 'http://www.findiko.de/hannover/';
	// var url_string = window.location + '';
	var url_string = parent.location + '';
	var param_string = '';
	var param_pos = url_string.lastIndexOf("?");
	if (param_pos >= 0)
	{
		param_string = url_string.substring(param_pos+1,url_string.length);
		param_string = param_string.replace("custompoiurl=/", "custompoiurl=http://www.hannover.de/");
	}

	if (param_string.length > 0)
	{
		querystr = '?' + param_string;
	}
	document.write('<object id="swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="left">');
	document.write('<param name="movie" value="' + movie_path + movie_file + querystr + '">');
	document.write('<param name="base" value="' + movie_path + '">');
	document.write('<param name="loop" value="false">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="quality" value="best">');
	document.write('<param name="bgcolor" value="#FAFABE">');
	document.write('<param name="scale" value="noscale">');
	document.write('<param name="salign" value="TL">');
	document.write('<embed src="' + movie_path + movie_file + querystr + '" base="' + movie_path + '" menu="false" quality="best" bgcolor="#FAFABE" scale="noscale" width="100%" height="100%" align="left" salign="TL" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object>');
}

