function reloadmovie(movie,gfxfile)
{
	if (!document.getElementById('movieplayer'))
		return;
	
	var cont=document.getElementById('movieplayer');
	
	cont.style.height='395px';
	cont.innerHTML='';
	
	var tso = new SWFObject("/player.swf", "2", "640", "395", "7", "#FFFFFF");
	tso.addVariable('flv_file', movie);
	tso.addVariable("gfx_file", gfxfile);
	tso.addParam("wmode", "window");
	tso.addParam('allowFullScreen', 'true');
	tso.write("movieplayer");
	
	cont.style.height='auto';
}

