// JavaScript Document

function abrePopup(miFoto) {
	window.open('pop_img.php?foto='+miFoto,'popfoto','width=150,height=100');
}

function abreWall(miFoto) {
	window.open('pop_wall.php?foto='+miFoto,'popfoto','width=300,height=250');
}

function abreJuego(miPagina,miAncho,miAlto,miNombre) {
	window.open(miPagina,miNombre,'width='+miAncho+',height='+miAlto);
}