function hidestatus(){
d=new Date();
window.status='Campus Gesem - ' + d.getDate() + "/" + (d.getMonth() + 1) + "/" + d.getYear() ;

return true
} 

function noder(e){
if(event.button ==2	|| event.button ==3){

	alert("GESEM FORMACIÓN Y CONSULTORíA INFORMÁTICA ");

	return false;
	}
else

	return true;
}

if (document.layers){
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
	window.captureEvents(Event.MOUSEDOWN); 
}
document.onmouseover=hidestatus
document.onmouseout=hidestatus
//document.onmousedown=noder
document.onmousedown = function(){return false} 
//document.oncontextmenu = function(){return false} 






