// script to prevent double scroll
$(document).ready(function() {
    if (parent.frames.length != 0) {
        var iframe  = $('<iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; visibility: hidden;"/>');
        var body = $('body');
        var url = 'www.etours-online.com/frame_resizer.php';
        var bodyHeight = body.height();

        iframe.attr('src', 'http://' + url +'?tsmPageHeight='+ bodyHeight);
        body.append(iframe);

        body.find("input.FormLoader:button")
        .click(function() {
            var piVisible = body.find("div.IbeProgressView").css('visibility');

            if(bodyHeight<700) {
                bodyHeight = 700;
            }

            if(piVisible!='hidden') {
                iframe.attr('src', 'http://' + url +'?tsmPageHeight='+ bodyHeight);
            }
        });
    }
}
)

