function Go(Url,Neu)
{
window.open(Url,Neu,'directory=0,scrollbars=no,toolbar=no,menubar=no,status=yes,resize=no,width=620,height=430,pageXoffset=0,pageYoffset=0,left=30,top=30');
}

function Go3(Url,Neu)
{
window.open(Url,Neu,'directory=0,location=1,scrollbars=yes,toolbar=no,menubar=no,status=no,resize=yes,width=650,height=510,pageXoffset=0,pageYoffset=0,left=30,top=30');
}

function Layer_verstecken(lay) {
if (ie4) {document.all[lay].style.visibility = "hidden";}
}

function Layer_zeigen(lay) {
if (ie4) {document.all[lay].style.visibility = "visible";}
}

function Anzeige() {
  window.status=' ... have fun ...';
  return true
}


/*
                GetRandomURL
                Written by Jerry Åman, Optima System, May 19, 1996.
*/

function GetRandomURL()
{
        // Put relative or full URL's in the strings below
        // You can increase the number of URL's to more than 5 by adding a
        // string containing an URL in list below

var locationlist = new URLList (
    "vote.php",
    "geld.php",
    "outdoor.php",
    "cybersex.php",
    "boese.php",
    "gesundheit.php",
    "gay.php",
    "swinger.php",
    "osterhase.php",
    "maerchen.php",
    "schwanz.php",
    "story.php",
    "fit4sex.php",
    "maenner.php",
    "blasen.php",
    "ohweh.php",
    "frauentip.php",
    "linux.php",
    "profil1.php",
    "sexlexikon.php",
    "pics.php",
    "nacktbild.php",
    "schlingel.php",
    "hilfe.php",
    "sexy.php",
    "teuflisch.php",
    "hautnah.php",
    "pille.php",
    "aufklaerung2.php",
    "diaet.php",
    "traumfrau.php",
    "emails.php",
    "reizwaesche.php",
    "geschichte.php",
    "sexygames.php",
    "suchspiel.php",
    "gewinnshow.php",
    "sexymemory.php",
    "sextests.php",
    "sextest.php",
    "psychotest.php",
    "english.php",
    "werbung.php",
    "erotik-farbe.php",
    "sexberatung.php",
    "sexbilder.php",
    "erotik-stadt.php",
    "oral.php",
    "angelina-jolie.php",
    "fetisch-bilder.php",
    "nackte-frauen.php",
    "busen.php",
    "busenquiz.php",
    "html-busen.php",
    "size.php",
    "kuscheln.php",
    "versaute-witze.php",
    "fotokurs.php",
    "physik.php",
    "traumfrau_bild034.php",
    "porno.php",
    "pornogeschichte.php",
    "pornobilder.php",
    "pornostars.php",
    "pornokino.php",
    "treuetest.php",
    "anti-frauen.php",
    "sex-videos.php",
    "essen.php",
    "partnersuche.php",
    "erotische-berufe.php",
    "sexy-frauen.php",
    "erotische-fotografie.php",
    "sexy-stars.php",
    "erotik-pur.php",
    "mode-suenden.php",
    "perverse-sexbilder.php",
    "junge-sexbilder.php",
    "sexy-erfindungen.php"

                );

    num = Math.round ( ( rand.next() * (locationlist.count-1)) );

    return locationlist.list[num];
}

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;
}

//*********************************************
// Park-Miller Pseudo-Random Number Generator
// JavaScript implementation by David N. Smith
// of IBM's T J Watson Research Center
//*********************************************
function NextRandomNumber()  {
  var hi   = this.seed / this.Q;
  var lo   = this.seed % this.Q;
  var test = this.A * lo - this.R * hi;
  if (test > 0)
    this.seed = test;
  else
    this.seed = test + this.M;
  return (this.seed * this.oneOverM);
}
function RandomNumberGenerator() {
  var d = new Date();
  this.seed = 2345678901 +
    (d.getSeconds() * 0xFFFFFF) +
    (d.getMinutes() * 0xFFFF);
  this.A = 48271;
  this.M = 2147483647;
  this.Q = this.M / this.A;
  this.R = this.M % this.A;
  this.oneOverM = 1.0 / this.M;
  this.next = NextRandomNumber;
  return this;
}

var rand = new RandomNumberGenerator();
