var paramterInURL=getParameterInURL();
function playAnimation() {
document.banner.src="./admin/Banner.gif";
}
function stopAnimation() {
document.banner.src="./admin/banner_still.gif";
}
function showFotoSerie() {
var page;
switch(document.formular.thema.value) {
case "20020210HistoricFarm": page="./20020210HistoricFarm/20020210HistoricFarm.html"; break;
case "20020223ChineseParade": page="./20020223ChineseParade/20020223ChineseParade.html"; break;
default: page="./admin/error.html";
}
if (paramterInURL["foto"]!=null) {
page=page+"?foto="+paramterInURL["foto"];
}
location.href=page;
}
function checkRedirect() {
//document.writeln("parameter= "+paramterInURL["fotoSerie"]);
if (paramterInURL["fotoSerie"]!=null) {
document.formular.thema.value=paramterInURL["fotoSerie"];
showFotoSerie();
}
}
function getParameterInURL() {
// die Funktion gibt ein Objekt [parametername]=Wert zur�ck
var parameterObject = new Object();
// die Parameter aus der URL holen (alles nach '?')
var parameter = location.search.substring(1);
//document.writeln("parameter = ", parameter);
// split erzeugt ein array von strings
var arrayOfAllParameter=parameter.split("&");
for(i=0; i