function click(e){if (document.all) if (event.button == 2) return false;if
(document.layers) if (e.which == 3) return false;
}
function click2(){event.returnValue=false;return false;}if (document.layers)
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=click;document.oncontextmenu=click2;
	function fotoFenster(bildname){
	   neuesFenster = window.open(bildname, "foto", "status=no, scrollbars=no, resizable=no, width=700, heigth=580");
	   neuesFenster.resizeTo(700, 580);
	   setTimeout("neuesFenster.focus();", 250);
	}
	function datenFenster(url){
	   neuesFenster = window.open(url, "daten", "status=no, scrollbars=yes, menubar=yes, resizable=yes, width=550, heigth=600");
	   neuesFenster.resizeTo(550, 600);
	   setTimeout("neuesFenster.focus();", 250);
	}
var text = "                                   - Segelyacht Alegria! -                              ";
var start = 0;
var stop = text.length;
function newsticker()
{
    window.status = " " + text.substring(start, stop) + " " + text.substring(0, start);
    start++;
 
    if(start >= stop)
    {
        start = 0;
    }
    setTimeout("newsticker()", 120);
	}