// Abre ventana
//ejemplo:
function av (url,nombre,parametros) {
w = window.open(url,nombre,parametros);
}


// Abre ventana centrada
//ejemplo: avc(popup,'',ancho,alto);
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);
}


// Ventana flotante
//ejemplo: vf('http://www.dominion.es/');
function vf (url) {
var theTop=(screen.height/2)-(450/2);
var theLeft=(screen.width/2)-(790/2);
var param = "top=" + (theTop-40) + ",left=" + theLeft + ",width=790,height=450,toolbar=yes,status=yes,scrollbars=yes,resizable=yes";
w = window.open(url,'',param);
}
