function view_image(file) 
	{
		$("#image").empty();
		$("#image").append("<table border=0 cellpadding=2 cellspacing=2 width='100%' bgcolor='#CCCCCC'><tr><td><center><img src='"+file+"' border=0 width=300 /><br/><a onclick='close_image();'><font color=white>close this image</font></a></center></td></tr></table>");
	}

function trailer_play(file) 
	{
		$("#trailer").empty();
		$("#trailer").append("<table border=0 cellpadding=2 cellspacing=2 width='100%' bgcolor='#CCCCCC'><tr><td><center><object height='300' width='460'><param value='http://uk.player.filmtrailer.com/v3.1/&mid="+file+"&channel_user_id=441100156-1&repeat=0&volume=0' name='movie'/><embed height='300' width='460' allowscriptaccess='always' allowfullscreen='true' src='http://uk.player.filmtrailer.com/v3.1/&mid="+file+"&channel_user_id=441100156-1&repeat=1&volume=20' type='application/x-shockwave-flash'/></object><br/><a onclick='trailer_close();'><font color=white>close trailer</font></a></center></td></tr></table>");
	}
	
function trailer_close() 
	{
		$("#trailer").empty();
	}

function close_image() 
	{
		$("#image").empty();
	}
	
function view_video(file, width, height) 
	{
		$("#video").empty();
		$("#video").append("<table border=0 cellpadding=2 cellspacing=2 width='100%' bgcolor='#CCCCCC'><tr><td><center><div id=vplayer></div><br/><a onclick='close_video();'><font color=white>close this video</font></a></center></td></tr></table>");
			var s1 = new SWFObject('http://media.festivalfocus.org/gmodules/javascript/video/player.swf','player',width,height,'9');
		s1.addParam('allowfullscreen','true');
		s1.addParam('allowscriptaccess','always');

		s1.addVariable("plugins", "gapro-1");
		s1.addVariable("gapro.accountid","UA-72899-13");

		s1.addParam('flashvars','&file='+file+'&autostart=true');
		s1.write('vplayer');
	}


function close_video() 
	{
		$("#video").empty();
	}


