var myfilename = '';

function hideMovie() 
{
		 var imgcontent = "<a href='javascript:showMovie()'><img src='/assets/images/play_video.gif' border='0' height='36' width='70' /></a>";

		 $("#flash-float").attr({
				height: 36,
				width : 70
		 });
		 $("#flash-float").html(imgcontent);
}

function showMovie()
{
	showMyMovie(myfilename);
}

function showMyMovie(filename) 
{
	myfilename = filename;
	 var content = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="350" height="500">' +
		 '<param name="movie" value="' + filename + '" />' +
		 '<param name="quality" value="high" />' + 
		 '<param name="wmode" value="transparent" />' + 
		 '<embed src="' + filename + '" width="350" height="500" ' + 
		 '    quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ' + 
		 '    wmode="transparent"></embed></object>';
	 $("#flash-float").attr({
			 height: 500,
			 width : 350
	 });
	 $("#flash-float").html(content);
}