#! /usr/bin/python
# Copyright (c) 2003 Arne Schwabe

import cgi
fs = cgi.FieldStorage()
import sys



try:
	name=fs["name"].value
	f=True

except KeyError:
	f=False
	



if not f:
	print "HTTP/1.1 302 Found"
	print "Location: ./?page=flash"
	
	
	
print "Content-Type: text/html"
sys.stdout.write("\n")

if f:

	#	print """<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%%" height="97%%" type="application/x-shockwave-flash" data="flash/%s?show">
	print """<object data="flash/%s?show" type="application/x-shockwave-flash" width="100%%" height="97%%">
	 <param name="scale" value="exactfit" />
	 <param name=movie value="flash/%s?showme">

Sie haben keine flash unterstützung

</object>""" % (name,name)
else:
	print "Error (zu faul für die richtige Beschreibung)"

print "<a href=\"./?page=flash\">Zurück zur richtigen Seite</a>"
