function decodescript(script)
{
	return unescape(script.replace(/@/g,'%'));
}

function displayplayer(filepath)
{
	filepath = decodescript(filepath);
	
	document.writeln("<OBJECT type=\"application/x-shockwave-flash\" data=\"http://www.make4fun.com/swf/FlowPlayer.swf\" width=\"400\" height=\"330\" id=\"FlowPlayer\">");
	document.writeln("	<param name=\"allowScriptAccess\" value=\"always\">");
	document.writeln("	<param name=\"movie\" value=\"http://www.make4fun.com/swf/FlowPlayer.swf\">");
	document.writeln("	<param name=\"quality\" value=\"high\">");
	document.writeln("	<param name=\"scaleMode\" value=\"showAll\">");
	document.writeln("	<param name=\"allowfullscreen\" value=\"false\">");
	document.writeln("	<param name=\"wmode\" value=\"transparent\">");
	document.writeln("	<param name=\"allowNetworking\" value=\"all\">");
	document.writeln("	<param name=\"flashvars\" value=\"config={ ");
	document.writeln("		fullScreenScriptURL: 'http://www.make4fun.com/swf/fullscreen.js',");
	document.writeln("		autoPlay: true, ");
	document.writeln("		loop: false, ");
	document.writeln("		initialScale: 'fit',");
	document.writeln("		showLoopButton: false,");
	document.writeln("		showPlayListButtons: false,");
	document.writeln("		playList: [");
	document.writeln("			{ name: 'video', url: '" + filepath + "' },");
	document.writeln("			{ url: 'http://www.make4fun.com/swf/FunnyVideo.swf', type: 'swf' }");
	document.writeln("		]");
	document.writeln("		}\">");
	document.writeln("</OBJECT>");
}