function re_mouse(put)
{
	if(document.all)
	{
		if(window.event.button==2)
			alert("Sorry, das gehört Hedys Schönheits - Oase !");
	}
	else
	{
		if(put.which==3)
		{
			alert("Sorry, das gehört Hedys Schönheits - Oase !");
			return false;
		}
	}
}
	if(document.layers)
	{
		document.captureEvents(Event.MOUSEDOWN)
	}
	document.onmousedown=re_mouse;

function CheckObFrame()
{
	if(top.document.title != "auto_start")
		top.location="index.html";
}
