function createplayer(theFile) {
	document.getElementById("saythiswrapper").style.display = "";
	var s = new SWFObject("http://www.feng-shui.ua/wp-content/plugins/flv-embed/flvplayer.swf","playerID","1","1","7");
	s.addParam("allowfullscreen","true");
	s.addVariable("file",theFile);
	s.addVariable("width","1");
	s.addVariable("height","20");
	s.addVariable("overstretch","fit");
	s.addVariable("autostart","true"); 
	s.write("saythiswrapper");
}
function sayThis(name) {
	var filename = "http://www.feng-shui.ua/video/say/" + name;
	createplayer(filename);
}
