/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


document.write('<div id="loading"><br><br><img src="../imagenes/loading.gif"></div>');

// Created by: Simon Willison | http://simon.incutio.com/
function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    } else {
        window.onload = function() {
            if (oldonload) {
                oldonload();
            }
            func();
        }
    }
}

addLoadEvent(function() {
    document.getElementById("loading").style.display="none";
});
