<!-- 01100011 01100001 01100110 01100001 01110010 01101110 01100001 01110011 -->

// Quitar Frame
function quitarFrame()
{
 if (self.parent.frames.length != 0)
 self.parent.location=document.location.href;
}
quitarFrame()
//-->

// Full screen

window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->


// Evita usar el boton derecho del ratón
document.oncontextmenu = function(){return false}
//-->

// Ocultar txt
function desplegar(cor)
{
	vista=document.getElementById(cor).style.display;
	if (vista=='none')
		vista='block';
	else
		vista='none';

	document.getElementById(cor).style.display = vista;
}


//-->