function centrarVentana(){
    if (navigator.appVersion.indexOf("MSIE")!=-1){
    	var alto_ventana=document.body.clientHeight;
    	var ancho_ventana=document.body.clientWidth;
    }else{
    	var ancho_ventana=window.outerWidth;
    	var alto_ventana=window.outerHeight;
    }
    var ancho_pantalla=screen.availWidth;
    var alto_pantalla=screen.availHeight;
    
    var posicion_x=Math.floor((ancho_pantalla-ancho_ventana)/2);
    var posicion_y=Math.floor((alto_pantalla-alto_ventana)/2);
    
    window.moveTo(posicion_x,posicion_y)
}