// JavaScript Document
/*var toggle = 0;
function show_hide()
{
	var
	var doappear = document.getElementById("legal_notice");
	doappear.style.display = "block";
}*/
var older;
function changeDiv(){
older=document.getElementById("legal_notice");
if(older.className == "none"){
	older.className="block";
	}
else if(older.className == "block"){
	 older.className="none"
	 }
}	

function popup(){
	window.open("creditos.php","Window1",
	"menubar=no,width=430,height=360,toolbar=no,location = no, screenX = 500, screenY =400");
}
function show_credits(){
	document.getElementById('credits').style.display = 'block';
	document.getElementById('credits').style.zIndex='3';
	
/*	document.getElementById('credits').style.position = 'absolute';
	document.getElementById('credits').style.top = '50%' ;
	document.getElementById('credits').style.top = '50%' ;
*/
}
function hide_credits(){
	document.getElementById('credits').style.display = 'none';
}