summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xadmin/bos.cgi27
-rw-r--r--admin/index.html17
-rw-r--r--aside.html30
-rw-r--r--aurora-borealis.css17
-rw-r--r--aurora-borealis.gifbin0 -> 19729 bytes
-rwxr-xr-xbos.cgi27
-rw-r--r--bos_defaults.pl15
-rw-r--r--diva.html26
-rw-r--r--dummy.mov0
-rw-r--r--flyer.css20
-rw-r--r--flyer.jpegbin0 -> 53122 bytes
-rw-r--r--index.da.html40
-rw-r--r--index.en.html41
l---------index.html1
-rw-r--r--index.is.html30
-rw-r--r--labloki.css17
-rw-r--r--labloki.html26
-rw-r--r--labloki.jpegbin0 -> 16212 bytes
-rw-r--r--mix.html38
19 files changed, 372 insertions, 0 deletions
diff --git a/admin/bos.cgi b/admin/bos.cgi
new file mode 100755
index 0000000..fb88608
--- /dev/null
+++ b/admin/bos.cgi
@@ -0,0 +1,27 @@
+#!/usr/bin/perl -wT
+
+# Copyright (c) 1997-2000 Jonas Smedegaard <dr@jones.dk>
+# $Id: bos.cgi, version 4.1 $
+
+use CGI::Carp 'fatalsToBrowser';
+require 5.003;
+use strict;
+
+##############################################################
+
+# BOS needs to know the path to the libraries and stuff
+#
+# That would also be the place to put FastTemplate and other
+# modules not installed at your website
+
+require "/usr/local/lib/scripts/jonas/bos-test/bos_defaults.pl";
+use lib "/usr/local/lib/scripts/jonas/bos-test";
+#use lib "$ENV{'DOCUMENT_ROOT'}/cgi-local";
+use lib "./";
+
+##############################################################
+
+# Don't touch these!
+
+require 'bos_defaults.pl';
+require 'bos-main.pl';
diff --git a/admin/index.html b/admin/index.html
new file mode 100644
index 0000000..a3db4d5
--- /dev/null
+++ b/admin/index.html
@@ -0,0 +1,17 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis - administration</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="../flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("../flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis - administration</span></h1>
+<div bos><P>F&oslash;lgende sider kan redigeres:</P>
+<P><A href="../bos.cgi?index.da.html" target="_top">dansk forside</A><BR>
+<A href="../bos.cgi?index.en.html" target="_top">engelsk forside</A><BR>
+<A href="../bos.cgi?index.is.html" target="_top">islandsk forside</A></P></body>
+</html>
diff --git a/aside.html b/aside.html
new file mode 100644
index 0000000..cbc97db
--- /dev/null
+++ b/aside.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis</span></h1>
+<div bos></div>
+<P>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/diva.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/diva.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/labloki.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/labloki.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+</P>
+<div bos></div>
+</body>
+</html>
diff --git a/aurora-borealis.css b/aurora-borealis.css
new file mode 100644
index 0000000..e0539ca
--- /dev/null
+++ b/aurora-borealis.css
@@ -0,0 +1,17 @@
+body{
+ margin-top:50px;
+ margin-left:160px;
+ margin-rigth:160px;
+ margin-bottom:50px;
+ background-attachment: fixed;
+ background-image: url(aurora-borealis.gif);
+ background-repeat: no-repeat;
+ background-position: left top;
+}
+a{
+color:990000;
+text-decoration:none;
+}
+.small{
+font-size:12px;
+}
diff --git a/aurora-borealis.gif b/aurora-borealis.gif
new file mode 100644
index 0000000..5c8e853
--- /dev/null
+++ b/aurora-borealis.gif
Binary files differ
diff --git a/bos.cgi b/bos.cgi
new file mode 100755
index 0000000..fb88608
--- /dev/null
+++ b/bos.cgi
@@ -0,0 +1,27 @@
+#!/usr/bin/perl -wT
+
+# Copyright (c) 1997-2000 Jonas Smedegaard <dr@jones.dk>
+# $Id: bos.cgi, version 4.1 $
+
+use CGI::Carp 'fatalsToBrowser';
+require 5.003;
+use strict;
+
+##############################################################
+
+# BOS needs to know the path to the libraries and stuff
+#
+# That would also be the place to put FastTemplate and other
+# modules not installed at your website
+
+require "/usr/local/lib/scripts/jonas/bos-test/bos_defaults.pl";
+use lib "/usr/local/lib/scripts/jonas/bos-test";
+#use lib "$ENV{'DOCUMENT_ROOT'}/cgi-local";
+use lib "./";
+
+##############################################################
+
+# Don't touch these!
+
+require 'bos_defaults.pl';
+require 'bos-main.pl';
diff --git a/bos_defaults.pl b/bos_defaults.pl
new file mode 100644
index 0000000..75ab6a2
--- /dev/null
+++ b/bos_defaults.pl
@@ -0,0 +1,15 @@
+# Honour multiple languages (allow *.ext.{lang}, and strip both in links)
+#
+$pref::doc_multiview = '1';
+
+# Default language
+# Ignored unless doc_multiview is active.
+#
+$pref::doc_lang = 'da'; # Supported locales: da en
+
+# Normally the above tags are standard html tags that could be used for other stuff than bos.
+# What parameter should we look for inside the tags (leave blank to ignore the id and accept all tags)?
+#
+#$pref::tag_id = '';
+
+'1'
diff --git a/diva.html b/diva.html
new file mode 100644
index 0000000..657f5c5
--- /dev/null
+++ b/diva.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis - &Aring;rhus</span></h1>
+<div bos></div>
+<P>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/diva.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/diva.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+</P>
+<div bos></div>
+</body>
+</html>
diff --git a/dummy.mov b/dummy.mov
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/dummy.mov
diff --git a/flyer.css b/flyer.css
new file mode 100644
index 0000000..f423b9d
--- /dev/null
+++ b/flyer.css
@@ -0,0 +1,20 @@
+body{
+ margin-top:50px;
+ margin-left:375px;
+ margin-rigth:400px;
+ margin-bottom:50px;
+ background-attachment: fixed;
+ background-image: url(flyer.jpeg);
+ background-repeat: no-repeat;
+ background-position: left top;
+}
+a{
+ color:990000;
+ text-decoration:none;
+}
+.small{
+ font-size:12px;
+}
+.centered{
+ text-align:center;
+}
diff --git a/flyer.jpeg b/flyer.jpeg
new file mode 100644
index 0000000..03d174a
--- /dev/null
+++ b/flyer.jpeg
Binary files differ
diff --git a/index.da.html b/index.da.html
new file mode 100644
index 0000000..9d2acbf
--- /dev/null
+++ b/index.da.html
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis</span></h1>
+<div bos><P>Aurora Borealis er en absurd og intim kammerspilsperformance i en privat lejlighed i &Aring;rhus midtby.<BR>
+Simultant med dette laves et kammerspil i Reykjavik, Island, af den islandske gruppe LabLoki, som transmitteres via Internet streaming og vises i respektive scenerum i henholdsvis &Aring;rhus og Reykjavik samt p&aring; KultuRama i Ridehuset i &Aring;rhus.</P>
+<P>En montage af tekster fra bl.a. August Strindberg, nyskreven electroakustisk musik og dans, I en form inspireret af kabaret, sitcoms og hyggeaftener i sofagruppen.</P>
+<P>Forestillingen har premiere den 7 oktober 2003 og spilles t.o.m. den 11. oktober kl. 21 og kl. 23 lokal tid.<BR>
+Den 10 oktober er forestillingen en del af KulturNat &Aring;rhus.</P>
+<H3>Internet video streams (kr&aelig;ver <A href="http://www.apple.com/quicktime/" target="_top">Quicktime</A> installeret):</H3>
+<P><A href="diva.html" target="_new">Danmark</A> - <A href="labloki.html" target="_new">Island</A> - <A href="aside.html" target="_new">begge</A><BR>
+(eller direkte: <A href="rtsp://xtream.lhi.is/diva.sdp">Danmark</A> - <A href="rtsp://xtream.lhi.is/labloki.sdp">Island</A>)</P>
+<P>G&aring;r afspilningen ikke igang kan det v&aelig;re fordi din forbindelse ikke er hurtig nok (256kbit pr. stream).</P>
+<P>G&aring;r afspilningen i st&aring;, s&aring; afslut Quicktime Player og start en ny forbindelse.</P>
+<H2>Medvirkende:</H2>
+<H3>&Aring;RHUS:</H3>
+<P>Kunstnerisk leder og iscenes&aelig;ttelse: Annika B. Lewis<BR>
+Dramaturgisk konsulent: Anne Line Svelle<BR>
+Performere: Martin Lundberg, Annika B. Lewis &amp; Betina Birkj&aelig;r Hansen<BR>
+Internet streaming: Jonas Smedegaard<BR>
+Musik: <A href="http://www.bassballs.dk/" target="_top">Anders Kr&oslash;yer</A> &amp; Jens M&oslash;nsted<BR>
+Video: <A href="http://www.eyefix.dk/" target="_top">Eyefix</A></P>
+<H3>REYKJAVIK:</H3>
+<P>Instrukt&oslash;r: Runar Gudbrandsson<BR>
+Performere: Pall S. Palsson &amp; Steinunn Knutsdottir<BR>
+Internet streaming, video, m.v.: Hakon Mar Oddsson</P>
+<P><BR>
+Forestillingen er st&oslash;ttet af: <A href="http://www.kulturnataarhus.dk/" target="_top">KulturNat &Aring;rhus</A> og Kulturudviklingspuljen, Magistratens 4. Afdeling/&Aring;rhus Kommune</P>
+<P>Aurora Borealis er produceret af <A href="http://www.kassandra-production.dk/" target="_top">Kassandra Production</A> i samarbejde med: <A href="http://www.labloki.com" target="_top">LabLoki</A>, <A href="http://dr.jones.dk/" target="_top">Spiff Aps.</A>, <A href="http://www.entrescenen.dk/" target="_top">Entr&eacute;Scenen</A>, Pappagallo, <A href="http://www.kulturhusaarhus.dk/" target="_top">Kulturhus &Aring;rhus</A> og <A href="http://www.dansevaerket.dk/" target="_top">Dansev&aelig;rket</A>, mfl.</P>
+<HR>
+<P>Denne side p&aring; andre sprog: <A href="index.is.html" target="_top">islandsk</A> <A href="index.en.html" target="_top">engelsk</A></P></body>
+</html>
diff --git a/index.en.html b/index.en.html
new file mode 100644
index 0000000..71e836a
--- /dev/null
+++ b/index.en.html
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis</span></h1>
+<div bos><P>Aurora Borealis is an absurd and intimate chambre performance in a private apartment in the center of &Aring;rhus, Denmark.<BR>
+Simultaneously a play is performed in Reykjavik, Iceland by the icelandic group LabLoki, transmitted through Internet video streaming and shown on stage in both &Aring;rhus and Reykjavik and at the KultuRama at Ridehuset in &Aring;rhus.</P>
+<P>A collection of texts from August Strindberg, original electro acoustic music and dance.<BR>
+In a form inspired by cabaret, sitcoms and cozy evenings in the couch.</P>
+<P>Premiere 7th of october 2003. Played every night at 9pm and 11pm local danish time until 11th of october.<BR>
+10th of october the performance is a part of KulturNat &Aring;rhus.</P>
+<H3>Internet video streams (requires <A href="http://www.apple.com/quicktime/" target="_top">Quicktime</A> installed):</H3>
+<P><A href="diva.html" target="_new">Denmark</A> - <A href="labloki.html" target="_new">Iceland</A> - <A href="aside.html" target="_new">both</A><BR>
+(raw: <A href="rtsp://xtream.lhi.is/diva.sdp">Denmark</A> - <A href="rtsp://xtream.lhi.is/labloki.sdp">Iceland</A>)</P>
+<P>If playing does not start you may not have a fast enough Internet connection (256kbit per stream is needed).</P>
+<P>If playing stops, try quitting your Quicktime player and connect again.</P>
+<H2>Participants:</H2>
+<H3>&Aring;RHUS:</H3>
+<P>Artistic leader and director: Annika B. Lewis<BR>
+Dramaturgie consultant: Anne Line Svelle<BR>
+Performers: Martin Lundberg, Annika B. Lewis &amp; Betina Birkj&aelig;r Hansen<BR>
+Internet streaming: Jonas Smedegaard<BR>
+Music: <A href="http://www.bassballs.dk/" target="_top">Anders Kr&oslash;yer</A> &amp; Jens M&oslash;nsted<BR>
+Video: <A href="http://www.eyefix.dk/" target="_top">Eyefix</A></P>
+<H3>REYKJAVIK:</H3>
+<P>Director: Runar Gudbrandsson<BR>
+Performers: Pall S. Palsson &amp; Steinunn Knutsdottir<BR>
+Internet streaming, video, etc.: Hakon Mar Oddsson</P>
+<P><BR>
+The performences are supported by: <A href="http://www.kulturnataarhus.dk" target="_top">KulturNat &Aring;rhus</A> and Kulturudviklingspuljen, Magistratens 4. Afdeling/&Aring;rhus Kommune</P>
+<P>Aurora Borealis is produced by <A href="http://www.kassandra-production.dk/English/sider/forside.htm/" target="_top">Kassandra Production</A> in cooperation with: <A href="http://www.labloki.com" target="_top">LabLoki</A>, <A href="http://www.kulturhusaarhus.dk/kulturhusaarhus/KulturhusAarhus.nsf/0/3211EBF538A4BC0FC1256D3B004183D2" target="_top">KultuRama &Aring;rhus</A>, <A href="http://dr.jones.dk/" target="_top">Spiff Aps.</A>, <A href="http://www.entrescenen.dk/" target="_top">Entr&eacute;Scenen</A>, Pappagallo and Dansev&aelig;rket.</P>
+<HR>
+<P>This page in other languages: <A href="index.da.html" target="_top">danish</A> <A href="index.is.html" target="_top">icelandic</A></P></body>
+</html>
diff --git a/index.html b/index.html
new file mode 120000
index 0000000..2b83fc9
--- /dev/null
+++ b/index.html
@@ -0,0 +1 @@
+index.da.html \ No newline at end of file
diff --git a/index.is.html b/index.is.html
new file mode 100644
index 0000000..4b475af
--- /dev/null
+++ b/index.is.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Horfa &aacute; straum</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="labloki.css" type="text/css">
+<STYLE type="text/css">
+@import url("labloki.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Horfa &aacute; straum</span></h1>
+<div bos><P><A href="rtsp://xtream.lhi.is/labloki.sdp">Leiks&yacute;ning &Iacute;sland</A> - <A href="rtsp://xtream.lhi.is/diva.sdp">Leiks&yacute;ning Danm&ouml;rku</A></P>
+<P></P>
+<H2>Uppl&yacute;singar:</H2>
+<P><A href="http://www.labloki.com" target="_top">Lab Loki</A> kynnir, &iacute; samstarfi vi&eth; <A href="http://www.kassandra-production.dk" target="_top">Kassandra Production</A>: Aurora Borealis</P>
+<P></P>
+<H2>L&aacute;gmarks t&aelig;kni:</H2>
+<P><A href="http://www.apple.com/quicktime/download/" target="_top">Quick Time 6.0</A> - og 256k adsl tenging</P>
+<P></P>
+<H2>Erfi&eth;leikar me&eth; sko&eth;un:</H2>
+<P>&Aacute;horfendur g&aelig;tu &aacute;tt &iacute; erfi&eth;leikum me&eth; a&eth; sj&aacute; strauminn og &thorn;urfa &thorn;&aacute; a&eth; opna Quicktime player fara &iacute; File og Open URL og skrifa inn fyrir Reykjav&iacute;k sl&oacute;&eth;ina rtsp://xtream.lhi.is/labloki.sdp og fyrir Danm&ouml;rku sl&oacute;&eth;ina rtsp://xtream.lhi.is/diva.sdp.</P>
+<P></P>
+<H2>S&eacute;rstakar &thorn;akkir:</H2>
+<P><A href="http://www.mi.is" target="_top">Margmi&eth;lun</A> - <A href="http://www.visitreykjavik.is" target="_top">Reykjav&iacute;k</A> - <A href="http://www.bhs.is" target="_top">Borgarholtssk&oacute;li</A> - <A href="http://www.lhi.is" target="_top">Listah&aacute;sk&oacute;li &Iacute;slands</A></P>
+<P>&copy; <A href="http://www.labloki.com" target="_top">Lab Loki</A> &amp; Arn&oacute;r H&aacute;konarson</P>
+<HR>
+<P>This page in other languages: <A href="index.da.html" target="_top">danish</A> <A href="index.en.html" target="_top">english</A></P></div>
+</body>
+</html>
diff --git a/labloki.css b/labloki.css
new file mode 100644
index 0000000..9638753
--- /dev/null
+++ b/labloki.css
@@ -0,0 +1,17 @@
+body{
+ margin-top:50px;
+ margin-left:187px;
+ margin-rigth:187px;
+ margin-bottom:50px;
+ background-attachment: fixed;
+ background-image: url(labloki.jpeg);
+ background-repeat: no-repeat;
+ background-position: left top;
+}
+a{
+color:990000;
+text-decoration:none;
+}
+.small{
+font-size:12px;
+}
diff --git a/labloki.html b/labloki.html
new file mode 100644
index 0000000..b9aabc0
--- /dev/null
+++ b/labloki.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis - Reykjavik</span></h1>
+<div bos></div>
+<P>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/labloki.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/labloki.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+</P>
+<div bos></div>
+</body>
+</html>
diff --git a/labloki.jpeg b/labloki.jpeg
new file mode 100644
index 0000000..e201e08
--- /dev/null
+++ b/labloki.jpeg
Binary files differ
diff --git a/mix.html b/mix.html
new file mode 100644
index 0000000..285be06
--- /dev/null
+++ b/mix.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>Aurora Borealis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<LINK rel="StyleSheet" href="flyer.css" type="text/css">
+<STYLE type="text/css">
+@import url("flyer.css");
+</STYLE>
+</head>
+<body>
+<h1><span bos="title">Aurora Borealis</span></h1>
+<div bos></div>
+<h2><span bos="title">&Aring;rhus</span></h2>
+<P>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/diva.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/diva.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+</P>
+<h2><span bos="title">Reykjavik</span></h2>
+<P>
+<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="240" height="180" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
+<param name="src" value="dummy.mov">
+<param name="qtsrc" value="rtsp://xtream.lhi.is/labloki.sdp">
+<param name="autoplay" value="true">
+<param name="loop" value="false">
+<param name="controller" value="false">
+<embed src="sample.mov" qtsrc="rtsp://xtream.lhi.is/labloki.sdp" width="240" height="180" autoplay="true" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/"></embed>
+</object>
+</P>
+<div bos></div>
+</body>
+</html>