﻿function show()
{
    document.getElementById("online_trade_data").style.display = 'block';
    document.getElementById("online_trade_data").style.visibility = 'visible'
    /*$find('ctl00_BodyContents_ModalPopupExtender_PANEL_INDIA_TRADE_DATA').show();*/
    return false;
}
function hide()
{
    document.getElementById("online_trade_data").style.display = 'none';
    document.getElementById("online_trade_data").style.visibility = 'hidden';
    /*$find('ctl00_BodyContents_ModalPopupExtender_PANEL_INDIA_TRADE_DATA').hide();*/
    return false;
}

window.onload = window.setTimeout('show()', 2500);
