//************************************************************************************************//
//
var today = new Date();
var year = today.getFullYear(); 
var clickmessage="Copyright "+year+" : Guineequatoriale-info.net (Ge-Infonet)"

//
if (parent.frames.length > 0) {
	window.top.location.href = location.href;
}
//
if (parent.frames.length >= 1) {
    window.top.location.href = document.location.href;
}
//

function disableclick(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			if (event.srcElement.tagName=="IMG") {
				alert(clickmessage);
				return false;
			}
		}
	}
	else if (document.layers) {
		if (e.which == 3) {
			alert(clickmessage);
			return false;
		}
	}
	else if (document.getElementById) {
		if (e.which==3&&e.target.tagName=="IMG") {
			alert(clickmessage)
			return false
		}
	}
}
//
function associateimages() {
	for(i=0;i<document.images.length;i++)
		document.images[i].onmousedown=disableclick;
}
//
if (document.all) {
	document.onmousedown=disableclick;
}
else if (document.getElementById) {
	document.onmouseup=disableclick;
}
else if (document.layers) {
	associateimages();
}
//
//************************************************************************************************//
//
function onKeyPress () {
	var keycode;
	if (window.event)
		keycode = window.event.keyCode;
	else if (e)
		keycode = e.which;
	else
		return true;
	if (keycode == 13) {
		return false;
	}
	return(true);
}
document.onkeypress = onKeyPress;
//
//************************************************************************************************//