function sl_resizeFrame(f) {
	window.scroll(0,0);
	f.style.height =
		f.contentWindow.document.body.scrollHeight + 25 + "px";
}

function sl_player(vid, width, height, id) {
	if (!width) width = "600";
	if (!height) height = "353";
	if (!id) id = "flashcontent";

	myHeight = parseInt(height);
	myHeight = myHeight + 35;

	var flashVars = {
		theFile: "/flash/flv/" + vid + ".flv",
		theVolume: "100",
		startPlayingOnload: "yes",
		popUpHelp: "no",
		bufferSeconds: "2",
		videoSmoothing: "yes"
	};

	var params = {
		salign: "t",
		menu: "false"
	};
	swfobject.embedSWF("/flash/flvplayer.swf", id, width, myHeight, "9.0.0", null, flashVars, params);
//	swfobject.embedSWF("/flash/flvplayer.swf", id, width, height, "9.0.0", null, params);
}
