// Abre ventana
function av (url,nombre,parametros) {
w = window.open(url,nombre,parametros);
}
// Abre ventana centrada
function avc (url,nombre,theWidth,theHeight) {
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var features="top=" + theTop + ",left=" + theLeft + ",width=" + theWidth + ",height=" + theHeight;
w = window.open(url,nombre,features);
}