<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--active script-->

function monthPage() {
today = new Date();
m = new Array
(
        "http://www.roor.de/galerie.html#id=28",         	// January
        "http://www.roor.de/galerie.html#id=28",           	// February
        "http://www.roor.de/roor_03_04_10.html",            //March
        "http://www.roor.de/roor_05_06_11.html",           	//April
        "http://www.roor.de/roor_05_06_11.html",            //May
        "http://www.roor.de/roor_05_06_11.html",            //June
        "http://www.roor.de/galerie.html#id=28",            //July
        "http://www.roor.de/roor_09_10_11.html",            //August
        "http://www.roor.de/roor_09_10_11.html",            //September
        "http://www.roor.de/roor_09_10_11.html",            //October
        "http://www.roor.de/galerie.html#id=28",            //November
        "http://www.roor.de/galerie.html#id=28"             //December
);

//refsite = unescape(document.referrer);
//alert("refsite: " + refsite);
//Anhang = refsite.substring(refsite.indexOf("?")+1,refsite.length);
//alert("Anhang: " + Anhang);


actual = m[today.getMonth()];
self.location = actual;
//alert(actual);

}
//  End -->

<!--
//******************************************************
// * Script from http://ldpoint.com
// * Phone and internet services, tools*
// * You can use this code if you leave this message*
// not used!!!!!
// ******************************************************
function GetMonthlyURL() {
  var locationlist = new URLList
  (
        "http://www.roor.de/index.html",         	// January
        "http://www.roor.de/index.html",           	// February
        "http://www.roor.de/index.html",            //March
        "http://www.roor.de/index.html",           	//April
        "http://www.roor.de/index.html",            //May
        "http://www.roor.de/index.html",            //June
        "http://www.roor.de/index.html",            //July
        "http://www.roor.de/index.html",            //August
        "http://www.roor.de/index.html",            //September
        "http://www.roor.de/index.html",            //October
        "http://www.roor.de/index.html",            //November
        "http://www.roor.de/index.html"             //December
 );

  now = new Date();
  num = now.getMonth();
  if (num == 0) num = 12;

  actual = locationlist.list[num];
  self.location = actual;

}

function URLList() {
  var argv = URLList.arguments;
  var argc = argv.length;
  this.list = new Object();
  for (var i = 0; i < argc; i++)
  this.list[i] = argv[i];
  this.count = argc;
  return this;
}
// -->

