﻿//change the  <div id="restof" style="visibility:hidden"> in the Tpseal.aspx to  <div id="restof" style="display:none">

//var numberOfPreloaded = 0;

//function imageLoaded() {
//    numberOfPreloaded++;

//    if (numberOfPreloaded == 5)
//        $('#restof').show();
//}

//$(document).ready(function() {
//    //$('#restof').hide();
//    $('#restof img').each(function() {
//        // Get image instance. 
//        var image = new Image();
//        image.src = $(this).attr('src');

//        if (image.complete)
//            imageLoaded();
//        else
//            image.onload = imageLoaded;

//    });
//});



function waitPreloadPage() {
    
    setTimeout('document.getElementById(\'restof\').style.visibility = \'visible\'', 0);
    

}

