function toggle(id){
	element=document.getElementById(id);
	if (element)
		element.style.display=(element.style.display=='none')?'block':'none';
	return false;
}
function screenshot(imagen,anchura,altura) {
	anchura+=30;
	altura+=10;

	// Centrar popup
	izquierda=(screen.width-anchura)/2;
	superior=(screen.height-altura)/2;

	window.open('screenshot.php?imagen='+imagen,'mostrarScreenshot','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+anchura+',height='+altura+',left='+izquierda+',top='+superior);
	return false;
}
function imagen(imagen,anchura,altura) {
	anchura+=30;
	altura+=10;

	// Centrar popup
	izquierda=(screen.width-anchura)/2;
	superior=(screen.height-altura)/2;

	window.open(imagen,'mostrarImagen','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+anchura+',height='+altura+',left='+izquierda+',top='+superior);
	return false;
}