/**
 * @author Vlad Yakovlev (red.scorpix@gmail.com)
 * @link www.scorpix.ru
 * @requires jQuery
 * @requires swfObject
 */

function player(videoFile, width, height, preview) {
	if (!width) {
		width = 420;
	}
	if (!height) {
		height = 260;
	}

	var id = 'video' + Math.round(Math.random() * 10000);

	setTimeout(function() {
		swfobject.embedSWF('/f/media/player.swf', id, width, height, "9.0.0", null, {
			file: videoFile,
			image: preview,
			skin: '/f/media/simple.swf',
			dock: 'true'
		}, {
			allowfullscreen: true,
			allowscriptaccess: 'always'
		});
	}, 1);

	return '<div id="' + id + '"></div>';
}