function init()
{
	// Remove focus links
	var i;
	for(i=0; i<document.links.length;i++)
	{
		document.links[i].onfocus = new Function('if (this.blur) this.blur()');
	}
}
function Bookmark()
	{
		javascript:window.external.AddFavorite("http://www.libera.org.uk","Libera Official Website");
	}

var message="";
message+="The images, audio, video and all of the site's content are Copyright 2006-2009 Libera\n";
message+="Please do not distribute\n";
message+="----------------------\n";
message+="©2006-2009 Libera\n";

///////////////////////////////////
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

function goback() {
    history.go(-1);
}