window.status='  => Hotel Restaurant Landgoed Montferland  <=  '

function click()
	{if(event.button==2)
	{alert('© www.landgoed-montferland.nl ');}}
	document.onmousedown=click























ScrollSpeed = 8000;  // milliseconds between scrolls
ScrollChars = 100;    // chars scrolled per time period

function SetupTicker() {
  // add space to the left of the message
  msg = "                   ";
  // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER
  msg += "Hotel Restaurant Landgoed Montferland    ";

  // this starts the ticker
  RunTicker();
}

function RunTicker() {
  window.setTimeout('RunTicker()',ScrollSpeed);
  window.status = msg;
  msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
}

// Start the ticker code
SetupTicker();
















































function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}













var x,y
var timer
var i_fadestrength=5
var step=1
var maxfontsize=28
var fontsizefactor=maxfontsize/100
var content

function cursorposition(e){
	x=event.clientX+document.body.scrollLeft
	y=event.clientY+document.body.scrollTop
}

function showmessage(whatmessage, whatfont, whatcolor) {
	if (document.all) {
		content="<nobr><font color="+whatcolor+" face="+whatfont+">"+whatmessage+"</font><nobr>"
		ring.innerHTML=content
		resizemessage()
	}
}

function resizemessage() {
if (document.all) {
	ring.filters.alpha.opacity=Math.floor(100-i_fadestrength)
	if (i_fadestrength>=120) {i_fadestrength=0;step=1}
	document.all.ring.style.visibility="visible"
	document.all.ring.style.fontSize=i_fadestrength*fontsizefactor
	document.all.ring.style.posLeft=x-(Math.floor(i_fadestrength/1.3*fontsizefactor))
	document.all.ring.style.posTop=y-(Math.floor(i_fadestrength/1.4*fontsizefactor))	
	step+=1.5
	i_fadestrength+=step
	timer=setTimeout("resizemessage()",50)
}
}

function hidemessage(e){
if (document.all) {
	clearTimeout(timer)
	document.all.ring.style.visibility="hidden"
	i_fadestrength=5
	step=1
}
}

if (document.all) {
	document.onmousemove=cursorposition;
}

if (document.all) {
	document.write("<DIV id='ring' style='position:absolute;font-family:Verdana;filter:alpha(opacity=0);'></DIV>")
	document.write("<DIV style='position:relative;'>")
}










