<%
	randome_key = Time.new.to_i
  path = @lock_path + @controller.encode(@path) + '?' + randome_key.to_s
	if @controller.is_image?
%>

<a href="<%= path %>" rel="lightbox"><img onload="if (this.width > 290) {this.width = 290}" src="<%= path %>" border="0"  /></a>
<%
	elsif @controller.is_flash?
%>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" height="295" width="295">
<param name="movie" value="<%= path %>" />
<param name="quality" value="high" />
<embed src="<%= path %>" quality="high" name="home" align="middle" type="application/x-shockwave-flash" height="295" width="295" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
<%
	elsif @controller.is_rm?
%>
<embed type="audio/x-pn-realaudio-plugin" CONSOLE="Clip1" CONTROLS="ImageWindow" HEIGHT="240" WIDTH="295" AUTOSTART="true" MAINTAINSPECT="TRUE"/> 
<embed SRC="<%= path %>" type="audio/x-pn-realaudio-plugin" CONSOLE="Clip1" CONTROLS="default" HEIGHT="50" WIDTH="295" AUTOSTART="true" />
<!--
<object width="300" height="240" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">
<param name="CONTROLS" value="ImageWindow">
<param name="CONSOLE" value="Video">
<param name="CENTER" value="TRUE">
<param name="MAINTAINSPECT" value="TRUE">
</object>
<object width="300" height="30" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">
<param name="CONTROLS" value="StatusBar">
<param name="CONSOLE" value="Video">
</object>
<object width="300" height="30" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">
<param name="CONTROLS" value="ControlPanel">
<param name="CONSOLE" value="Video">
<param name="SRC" value="<%= path %>">
<param name="AUTOSTART" value="TRUE">
<param name="PREFETCH" value="0">
<param name="LOOP" value="0">
<param name="NUMLOOP" value="0">
</object>
-->
<%
	elsif @controller.is_movie?
%>
<embed SRC="<%= path %>" CONSOLE="Clip1" CONTROLS="All" HEIGHT="295" WIDTH="295" AUTOSTART="true" />
<%
	elsif @controller.is_plain?
%>
<iframe width=300 height=300 frameborder=0 scrolling=auto src="<%= path %>"></iframe>
<%
	elsif @controller.is_office?
%>
<iframe width=300 height=300 frameborder=0 scrolling=auto src="<%= path %>"></iframe>
<%
	elsif @controller.is_none?
%>
<%
	else
%>
<div style="font-weight:normal;">
<pre>
  <%= @controller.file_content %>
</pre>
</div>
<%
	end
%>