<!--

// Original: Enrico Di Dio

function right(e) {
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))

	return false;

	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
	{ 
alert (  'Nähere Informationen erhalten Sie unter der \n' +

		'Rufnummer +49 (0)1 71 / 5 31 77 43 oder \n' +

		'E-Mail info@residence-valentina.eu \n' +

		'\n' +

		'Bitte klicken Sie auf "OK"');

	return false;

	}

	return true;

}

for (var i=0; i<document.images.length; i++)

	document.images[i].onmousedown=right;

for (var i=0; i<document.links.length; i++)

	document.links[i].onmousedown=right;

	document.onmousedown=right;

	document.onmouseup=right;

		if (document.layers) window.captureEvents(Event.MOUSEDOWN);

		if (document.layers) window.captureEvents(Event.MOUSEUP);

		window.onmousedown=right;

		window.onmouseup=right;

-->