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("This Page is fully protected and all IP addresses are logged");
				return false;
			}
		return true;
	}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;


function display(myimage,mytitle)
	{
		var html = "<html><head><title>" + mytitle + "</title>" +
  "<script type='text/javascript' src='hotel-assist.js'></script></head><body style='margin:0px'><div align='center'>" +
  "<img src='" + myimage + "' border=0 alt='" + mytitle + "' name=image " +
  "onload='window.resizeTo(document.image.width,document.image.height + 46)' nosave></div>" +
  "</body></html>";
		popup = window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
		popup.document.open();
		popup.document.write(html);
		popup.document.focus();
		popup.document.close()
	 }

