var win;

function abrir(url,nombre,ancho,alto) {
	arriba = (screen.height/2) - (alto/2) - 50;
	izda = (screen.width/2) - (ancho/2) - 30;
	if (win!=null) win.close();
	if (nombre != null) {
		win = open(url,nombre,"width="+ancho+",height="+alto+",top="+arriba+",left="+izda+",status=yes,toolbar=no,titlebar=yes,menubar=no,location=no,fullscreen=no");//channelmode=yes
	} else {
		win = open(null,nombre,"width="+ancho+",height="+alto+",top="+arriba+",left="+izda+",status=yes,toolbar=no,titlebar=yes,menubar=no,location=no,fullscreen=no");//channelmode=yes
		win.document.write("<HTML><HEAD><style>body{margin:0;padding:0}img{margin:0;border:0}</style></HEAD><body>");
		win.document.write("<img src='" + url + "' border='0'>");
		win.document.write("</body></html>");
		win.document.close();
	}
	win.focus();
}


function comprobarCampos(f) {
var campo = -1;

	for (var i=0; i<f.elements.length; i++) {
		if (f.elements[i].value=="") {
			campo = i;
			break;
		}
	}
	if (campo != -1) {
		alert("¡Rellena todos los datos, por favor...!");
		f.elements[campo].focus();
	} else {
		f.submit();
	}
}


function verFoto(archivo,x,y) {
	params = "top=250,left=300,width=" + x + ",height=" + y + ",menubar=no,location=no,resizable=no,scrollbars=no,status=yes";
	foto = open("imagen/fotos/" + archivo,"foto",params);
	foto.resizeTo(x+5,y+50);
	foto.document.open();
	foto.document.write ("<HTML><HEAD></HEAD><BODY BACKGROUND='imagen/fotos/" + archivo + "'>");
	foto.document.write ("</BODY></HTML>");
	foto.document.close();
	foto.focus();
}

