<!-- Beginning of JavaScript -

// CREDITS:
// Simple flying pop-up-window by Urs Dudli and Peter Gehrig 
// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.ch.
// info@24fun.ch
// 2/8/2000


// The name of the pop-up-window. Do not change it.
var popwindow

// The height of your pop-up-window (pixels)
var popwindowwidth=250

// The width of your pop-up-window (pixels)
var popwindowheight=350

// Distance to the top margin of the big window.
var popwindowtop=20

// The URL of the HTML-file that contains the content of the pop-up-window
var popwindowURL="conejita.htm"

// Standstill-time (seconds)
var waitingtime=5

// Configure ths speed of the pop-up-window
var pause=20
var step=40

// Do not change this variable
var popwindowleft=-popwindowwidth-50

// Do not change this variable
var marginright

// Do not change this variable
var pagecenter

// Do not change this variable
var timer

waitingtime= waitingtime*1500

function showWindow() {
	popwindow = window.open(popwindowURL, "popwindow", "toolbar=no,width="+popwindowwidth+",height="+popwindowheight+",top="+popwindowtop+",left="+(-popwindowwidth)+"");
	if (document.all) {
		marginright = screen.width+50
	}
	if (document.layers) {
		marginright = screen.width+50
	}
	pagecenter=Math.floor(marginright/2)-Math.floor(popwindowwidth/2)
	movewindow()
}

function movewindow() {
		if (popwindowleft<=pagecenter) {
			popwindow.moveTo(popwindowleft,popwindowtop)
			popwindowleft+=step
			timer= setTimeout("movewindow()",pause)
		}
		else {
			clearTimeout(timer)
			timer= setTimeout("movewindow2()",waitingtime)
		}
}

function movewindow2() {
		if (popwindowleft<=marginright) {
			popwindow.moveTo(popwindowleft,popwindowtop)
			popwindowleft+=step
			timer= setTimeout("movewindow2()",pause)
		}
		else {
			clearTimeout(timer)
			popwindow.close()
		}
}

// -->