function loadMovie(divName, movieName, movieHeight, movieWidth)
	{
		var so = new SWFObject("/stream/wasp.swf", "movie"+Math.floor(Math.random()*99999), movieHeight, movieWidth, "8.0.0.0", "#ffffff");
		so.addVariable("theFile", "/flv/"+movieName);
		//so.addVariable("theFile", "/flv/webisode.flv?ID=" + movieID);
		so.addVariable("startPlayingOnload", "yes");
		so.addVariable("popUpHelp", "no");
		so.addVariable("bufferSeconds", "5");
		so.addVariable("videoSmoothing", "yes");
		so.addParam("wmode", "transparent");
		so.write(divName);
	}