// JavaScript Document
var d=new Date()
var weekday=new Array("Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag")
var monthname=new Array("Jan.","Feb.","Mar.","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dec.")
var time = d.getHours()
var day = d.getDay()

if ( day < 1) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_sonntags.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}
else
if (day < 2) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_montags.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}

else
if (day < 3) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_dienstags.htm", "", "width=450,height=500,scrollbars=no,top=20,left=20,");
 AFenster.focus();}

else
if (day < 4) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_mittwochs.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}

else
if (day < 5) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_donnerstags.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}
 
else
if (day < 6) 
{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_freitags.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}


else

{
AFenster = window.open("http://www.moselbad.de/fileadmin/template/popup/offen_sonntags.htm", "", "width=450,height=500,scrollbars,top=20,left=20,");
 AFenster.focus();}