// For all top level pages
// Need to exclude Mac: somehow the top != self statement is causing abnormal
// behavior in Mac
if (navigator.userAgent.indexOf("Mac")==-1)
{
	if (top != self)
		top.location = self.location;
}

/* Start for Blocking of Mouse Right Click */
/*
var IE;
var NN;
if(navigator.appName=="Microsoft Internet Explorer")
IE=true;
else if(navigator.appName=="Netscape")
NN=true;

function right(click)
{
	if(IE && (event.button==2 || event.button==3))
	{
		alert("For security purposes right-click is not allowed!");
		return false;
	}
	if(NN && (click.which==2 || click.which==3))
	{
		alert("For security purposes right-click is not allowed!");
		//event.preventDefault()
		//click.returnValue = false
		return false;
	}
	return true;
}

if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
document.onmousedown=right;
document.onmouseup=right;
window.document.layers=right;
*/
