//abre ventanas Pop up
function AbrirVentana(url, nom, w, h, parametros){

  var x=(screen.width/2)-Math.floor(w/2); //Posicion centrada en x
  var y=(screen.height/2)-Math.floor(h/2);//Posicion centrada en y

  var str='top='+y+',left='+x+',width='+w+',height='+h;
  
  if (parametros!='') str=str+','+parametros;

  ventana=window.open(url,nom,str);
	if(window.focus)
	{ventana.focus();
	}
}