function showmenu()
{
var str="";
str+="<div class='m_wrap'><div class='nav'>";
str+="<ul>";
str+="<li class='list01' onmouseover=\"javascript:submenu('abt','sub',this)\"><a href='#' id='abt' style='color:#ffffff;'>About Us</a></li>";
str+="<li class='list02' onmouseover=\"javascript:submenu('mkt','sub',this)\"><a href='#' id='mkt' style='color:#ffffff;'>Markets</a></li>";       
str+="<li class='list02' onmouseover=\"javascript:submenu('ind','sub',this)\"><a href='#' id='ind' style='color:#ffffff;'>Indices</a></li>";       
str+="<li class='list03' onmouseover=\"javascript:submenu('cor','sub',this)\"><a href='#' id='cor' style='color:#ffffff;'>Corporates</a></li>";    
str+="<li class='list03' onmouseover=\"javascript:submenu('iss','sub',this)\"><a href='#' id='iss' style='color:#ffffff;'>Public Issues / Buyback</a></li>";     
str+="<li class='list04' onmouseover=\"javascript:submenu('mem','sub',this)\"><a href='#' id='mem' style='color:#ffffff;'>Members</a></li>";     
str+="<li class='list02' onmouseover=\"javascript:submenu('inv','sub',this)\"><a href='#' id='inv' style='color:#ffffff;'>Investors</a></li>"; 
str+="<li class='list05' onmouseover=\"javascript:submenu('iccl','sub',this)\"><a href='#' id='iccl' style='color:#ffffff;'>&nbsp;ICCL&nbsp;</a></li>";     
str+="<li class='list05' onmouseover=\"javascript:submenu('trn','sub',this)\"><a href='#' id='trn' style='color:#ffffff;'>Training / Certification</a></li>";      
str+="<li class='list05' onmouseover=\"javascript:submenu('prd','sub',this)\"><a href='#' id='prd' style='color:#ffffff;'>Products / Services</a></li>";  
str+="<li class='list06' onmouseover=\"javascript:submenu('bse','sub',this)\"><a href='http://bseplus.bseindia.com' id='bse' style='color:#ffffff;'>&nbsp;BSEPlus</a></li>";    
str+="</ul>";
str+="</div></div>";
str+="<div id='sub'  style='display: none; filter: alpha(opacity=110); -moz-opacity: 1; z-index:999'></div>";
str+="<iframe id='ifrm' style='display:none;' frameborder='0'></iframe>";
IH("menu",str);
}

var nVer = navigator.appVersion;
var nAgt = navigator.userAgent;
var browserName  = navigator.appName;
var verOffset;

if ((verOffset=nAgt.indexOf("MSIE"))!=-1) {
 browserName = "Microsoft Internet Explorer";
}
else if ((verOffset=nAgt.indexOf("Chrome"))!=-1) {
 browserName = "Chrome";
}
else if ((verOffset=nAgt.indexOf("Firefox"))!=-1) {
 browserName = "Firefox";
}		

function onruntime(mid)
{
     if(browserName!="Firefox")
	{
        O("menu").onmouseover=function()
        {
            show(event,mid)
        };
        document.body.onmouseout=function()
        {
            show(event,mid)            
        };
    }
    else
	{
        document.body.setAttribute("onmouseout","hide('sub','"+mid+"')");        
        O("menu").setAttribute("onmouseover","show(this,'"+mid+"')");        
	}
}

function show(e,mid)
{
    try
	{
	    if (!e)
		var e = window.event;
		if(browserName!="Firefox")
		{
		   if (e.type == 'mouseout')
	        {
		        O("sub").style.display="none";
		        O("ifrm").style.display="none";
		        O(mid).style.background="";
	        }
	        else if (e.type == 'mouseover')
	        { 
		        O("sub").style.display="";		        
		        O("ifrm").style.display="";
		        O(mid).className="fade";		       
		        applystyle(mid);
	        }
	    }
		if(browserName=="Firefox")
		{
	        O("sub").style.display="";
	        O("ifrm").style.display="";
	        O(mid).className="fade"; 
	        applystyle(mid);
	     }
	}
	catch(err) {}
}

function hide(id,mid)
{
    O(id).style.display="none";
    O("ifrm").style.display="none";
    O(mid).style.background="";
    document.body.style.opacity="";
    document.body.style.filter="";
}

function position(id,objli,wprd,hprd)
{	
	var obj = objli;
	var curleft = curtop = 0;
	if (obj.offsetParent)
	{
		curleft = obj.offsetLeft;
		curtop = obj.offsetTop;
		while (obj = obj.offsetParent)
		{
			curleft += obj.offsetLeft;			
			curtop += obj.offsetTop;
		}
		curtop = curtop + 25;
		curleft = curleft +1;
	}
	wprd = wprd + 5;	
	var dfs = O(id).style;
	var ifrm = O("ifrm").style;
	ifrm.left = curleft + "px";
	ifrm.top = curtop + "px";
	ifrm.width = wprd + "px";
	ifrm.height = hprd + "px";
	dfs.left = curleft + "px";
	dfs.top = curtop + "px";
}


function positionR(id,objli,wprd,hprd,n)
{
	var obj = objli;
	var curleft = curtop = 0;
	if (obj.offsetParent)
	{
		curleft = obj.offsetLeft;
		curtop = obj.offsetTop;
		while (obj = obj.offsetParent)
		{
			curleft += obj.offsetLeft;			
			curtop += obj.offsetTop;
		}
		curtop = curtop + 25;
		curleft = curleft +1;
	}
	wprd = wprd + 5;	
	var dfs = O(id).style;
	var ifrm = O("ifrm").style;
	ifrm.left = curleft + n + "px";
	ifrm.top = curtop + "px";
	ifrm.width = wprd + "px";
	ifrm.height = hprd + "px";
	dfs.left = curleft + n + "px";
	dfs.top = curtop + "px";
}


function applystyle(mid,objli)
{
    var menuwidth=document.getElementById("menu").offsetWidth;

    if(mid=="abt")
    {
      O("aboutus").style.display=""; 
      O("abt").style.background="#08735f";
      var wprd = O("aboutus").clientWidth;
      var hprd = O("aboutus").clientHeight;      
	  position('sub',objli,wprd,hprd);
    }
    else if(mid=="ind")
    {
      O("indices").style.display="";
      O("ind").style.background="#5f4024";
      var wprd = O("indices").clientWidth;
      var hprd = O("indices").clientHeight;
	  position('sub',objli,wprd,hprd); 
    }
    else if(mid=="cor")
    {
      O("corporate").style.display=""; 
      O("cor").style.background="#A8965E"; 
      var wprd = O("corporate").clientWidth;
      var hprd = O("corporate").clientHeight;
	  position('sub',objli,wprd,hprd);
    }
    else if(mid=="iss")
    {
      O("issuances").style.display=""; 
      O("iss").style.background="#A8965E";
      var wprd = O("issuances").clientWidth;
      var hprd = O("issuances").clientHeight;
	  position('sub',objli,wprd,hprd); 
    }
    else if(mid=="mem")
    {
      O("members").style.display="";
      O("mem").style.background="#2e4f69";
      var wprd = O("members").clientWidth;
      var hprd = O("members").clientHeight;
	  position('sub',objli,wprd,hprd);   
    }
    else if(mid=="inv")
    {
      O("investor").style.display=""; 
      O("inv").style.background="#5f4024";
      var wprd = O("investor").clientWidth;
      var hprd = O("investor").clientHeight;
	position('sub',objli,wprd,hprd); 
    }
    else if(mid=="trn")
    {
      O("training").style.display="";
      O("trn").style.background="#016a56";
      var wprd = O("training").clientWidth;
      var hprd = O("training").clientHeight;
      positionR('sub',objli,wprd,hprd,((O("trn").offsetWidth-5) - wprd));  
    }
    else if(mid=="prd")
    {
      O("products").style.display="";       
      O("prd").style.background="#016a56";
      var wprd = O("products").clientWidth;
      var hprd = O("products").clientHeight;
 	positionR('sub',objli,wprd,hprd,((O("prd").offsetWidth-3) - wprd));       
    }
    else if(mid=="mkt")
    {
      O("market").style.display="";
      O("mkt").style.background="#5f4024";
      var wprd = O("market").clientWidth;
      var hprd = O("market").clientHeight;
	  position('sub',objli,wprd,hprd);   
    } 
    else if(mid=="bse")
    {
      O("bse").style.display="";
      O("bse").style.background="#08735f";
     var wprd = O("bse").clientWidth;
      var hprd = O("bse").clientHeight;
	 position('sub',objli,0,0); 
    } 
   else if(mid=="iccl")
    {
      O("abticcl").style.display="";
      O("iccl").style.background="#08735f";
	var wprd = O("abticcl").clientWidth;
      var hprd = O("abticcl").clientHeight;
	  position('sub',objli,wprd,hprd);  
    }  
}


function submenu(mid,id,objli)
{
onruntime(mid);
O("ifrm").style.display="";
O(id).style.display="";
var s1="";
s1+="<div class='cblock00 aboutus' id='aboutus' style='display:none'>";
s1+="	<table cellspacing='0' cellpadding='0' border='0' id='leftabt'>";
s1+="	<tr>";
s1+="		<td class='col1'><div class='cblock02'>";
s1+="			<h3><a href='/about/introbse.asp' class='lineheight'>Introduction</a></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/about/vision.asp'>Vision</span></a></li>";
s1+="			<li><a href='/about/logo.asp'>Logo</span></a></li>";
s1+="			<li><a href='/about/heritage.asp'>Heritage</span></a></li>";
s1+="			<li><a href='/about/Milestones.asp'>Milestones</a></li>";
s1+="		</div>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>Corporate Structure</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/about/board.asp'>Board Of Directors</a></li>";
s1+="			<li><a href='/Deri/Deri/Deri_dergovcl.htm?L=2&id=hd1&Lid=1'>Derivatives-Governing / Clearing Council</a></li>";
s1+="			<li><a href='/about/mgmteam.asp'>Management Team</a></li>";
s1+="			</ul>";
s1+="		</div>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>BSE Shareholders</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/about/agm.asp'>AGM / EGM</a></li>";
s1+="			<li><a href='/about/corporate.asp'>Corporate Actions</a></li>";
s1+="			<li><a href='/qresann/bseres.asp'>Financial Results</a></li></ul>";
//s1+="			    <ul class='slist01'><li><a href='/qresann/bseres.asp'>Results</a></li>";
//s1+="			    <li><a href='/about/bseannual.asp'>Annual Accounts</a></li></ul>";
s1+="			<ul class='mlist01'><li><a href='/about/infoshareholder.asp'>Information for Shareholders</a></li>";
s1+="			</ul>";
s1+="		</div></td>";
s1+="		<td class='col2'>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>Notifications</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/cirbrief/new_notices_datewise.asp?day=today'>Circulars / Notices</a></li>";
s1+="			<li><a href='/cirbrief/pressrel.asp'>Media Releases</a></li>";
s1+="			<li><a href='/about/st_key/keystats012.asp'>Statistics</a></li>";
s1+="			<li><a href='/about/listholi.asp'>List of Holidays</a></li>";
s1+="			<li><a href='/about/tenders.asp'>Tenders</a></li>";
s1+="			<li><a href='/about/pfnotification.asp'>PF Notification</a></li>";
s1+="			</ul>";
s1+="		</div><br>";
s1+="		<div class='cblock02' style='margin-bottom:8px;'> <a href='/convention/index.asp' style='font-family:verdana;font-size:11px;'>BSE International Convention Hall</a></div>";
s1+="		<div class='cblock02' style='margin-bottom:8px;'><a href='/about/careers.asp' style='font-family:verdana;font-size:11px;'>Careers</a></div>";
s1+="		<div class='cblock02'><a href='/contact/index.asp' style='font-family:verdana;font-size:11px;'>Contact Us</a></div>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>Group Companies</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='http://www.bsesme.com/' target='_blank'>SME Exchange</a></li>";
s1+="			<li><a href='http://www.cdslindia.com/' target='_blank'>CDSL</a></li>";
s1+="			<li><a href='http://www.mkttech.in/' target='_blank'>Marketplace Technologies</a></li></ul>";
s1+="			<ul class='mlist01'><li><a href='http://bsebti.com/' target='_blank'>BSE Institute Ltd</a></li>";
s1+="			<li><a href='http://www.bseindia.com/iccl/about_iccl.aspx' target='_blank'>ICCL</a></li></ul>";
s1+="		</div>";
s1+="		</td>";
s1+="		<td class='col3'>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>BSE BUZZ</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/bsenews/index.aspx'>Latest Highlights</a></li>";
s1+="			<li><a href='/bsenews/index.aspx?cat=news'>BSE in News</a></li>";
s1+="			<li><a href='/bsenews/index.aspx?cat=list'>Listing Ceremony</a></li>";
s1+="			<li><a href='/bsenews/index.aspx?cat=add'>Advertisements</a></li>";
s1+="			<li><a href='/bsenews/index.aspx?cat=csr'>CSR</a></li>";
s1+="			<li><a href='/bsenews/index.aspx?cat=dev'>Developments @ BSE</a></li>";
s1+="			</ul>";
s1+="		</div>";
s1+="		<div class='cblock02'>";
s1+="			<h3><span  class='lineheight'>Systems & Processes</span></h3>";
s1+="			<ul class='mlist01'>";
s1+="			<li><a href='/about/tech.asp'>Technology</a></li>";
s1+="			<li><a href='/about/abintrobse/safetymark.asp'>Safety of Markets</a></li>";
s1+="			<li><a href='/about/tradnset.asp'>Trading & Settlement</a></li>";
s1+="			<li><a href='/about/riskmng.asp'>Risk Management</a></li>";
s1+="			<li><a href='/about/surveill.asp'>Surveillance</a></li>";
s1+="			<li><a href='/about/abintrobse/rectdel.asp'>Rectification of Bad Delivery</a></li>";
s1+="			</ul>";
s1+="		</div>";
s1+="		<div class='cblock02'>";
s1+="			<h3><a href='/whtsnew/index.asp'>What's New</a></h3>";
s1+="		</div>";
s1+="		</td>";
s1+="	</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 market' id='market' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr><td colspan='2' style='height:30px;vertical-align:middle;text-align:left;background-color:#d2ac8a;'>&nbsp;&nbsp;<a href='/sensex/mktwatchR.aspx?filter=gainer*group$all$a'><span  class='single'>Equity</span></a></td>";
//s1+="       <td  style='height:30px;vertical-align:middle;text-align:left;background-color:#d2ac8a;'>&nbsp;&nbsp;<a href='/sensex/mktwatchR.aspx?filter=gainer*group$all$a'><span  class='single'>Derivatives</span></a></td>";
s1+="       <td class='col3' rowspan='2'>";
s1+="			<table cellpadding='0' cellspacing='0'>";
s1+="			<tr>";
s1+="			<td class='col3'>";
s1+="               		<div class='cblock02' style='width:180px; height:22px;text-align:left; padding:6px 5px 3px 5px;margin:0px 10px 7px 15px; background-color:#d2ac8a;font-family:verdana;'>";
s1+="					<h3><a href='/deri/HotLinks/Derimarketwatch.aspx'><span  class='single'>Derivatives</span></a></h3>";
s1+="				</div>";
s1+="				<div>";
s1+="	                <ul class='mlist01' style='padding:0px 0px 0px 40px; '>";
s1+="					<li><a href='/deri/HotLinks/Derimarketwatch.aspx?L=2&id=hd0&Lid=0'>Market Watch </a></li>";
s1+="					<li><a href='/deri/HotLinks/DeriOptionchain.aspx?L=2&id=hd0&Lid=1'>Derivatives Chain</a></li>";
s1+="					<li><a href='/deri/HotLinks/AboutLeips.aspx?L=2&id=hd5&Lid=0'>LEIPS</a></li>";
s1+="					<li><a href='/deri/Deri/Introduction.htm?L=2&id=hd1&Lid=0'>Market Information</a></li>";
s1+="					<li><a href='/deri/Deri/Download.htm?L=2&id=hd2&Lid=0'>Downloads</a></li>";
s1+="					<li><a href='/deri/HotLinks/Notices.aspx?L=2&id=hd3&Lid=0'>Notices</a></li>";
s1+="					<li><a href='/deri/HotLinks/DeriHistorical.aspx?L=2&id=hd4&Lid=0'>Historical Data</a></li>";
s1+="					</ul>";
//s1+="				</div>";
s1+="				</div>";
s1+="               		<div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
s1+="					<h3><a href='/deri/CDX/CDX_deri.htm?L=2&id=hd4&Lid=0' style='color:#000'>USE - Currency Derivatives</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
s1+="					<h3><a href='/debt/tradereport.aspx?L=010100' style='color:#000'>Debt</a></h3>";
s1+="				</div>";
s1+="                           <div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
s1+="					<h3><a href='/about/ETFTrade.asp' style='color:#000'>Exchange Traded Funds</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
s1+="					<h3><a href='/about/BSEStarMF.asp' style='color:#000'>BSE StAR Mutual Funds</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
s1+="					<h3><a href='/bseslb/' style='color:#000'>Securities' Lending and Borrowing (SLB)</a></h3>";
s1+="				</div>";
//s1+="				<div class='cblock02' style='width:180px;text-align:center;padding:3px 5px 3px 5px;margin:7px 10px 0px 15px;border:solid 2px #d7b698;background-color:#e1c8b0;font-family:verdana;cursor:pointer;'>";
//s1+="					<h3><a href='/cirbrief/new_notices_datewise.asp?day=today' style='color:#000'>Circulars / Notices</a></h3>";
//s1+="				</div><br/>";
s1+="			</td>";
s1+="           </td></tr></table></td>";
s1+="		</tr>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'><a href='/callauction/map.aspx'>Pre Open</a></span></h3>";
s1+="					<h3><span  class='lineheight'>Live Reports</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/sensex/mktwatchR.aspx?filter=gainer*all$all$'>Gainers</a></li>";
s1+="					<li><a href='/sensex/mktwatchR.aspx?filter=loser*all$all$'>Losers</a></li>";
s1+="					<li><a href='/mktlive/adv_dec/advdec.asp'>Advances / Declines</a></li>";
s1+="					<li><a href='/sprtvol/Missprtvol.asp'>Spurt in Volume</a>&nbsp;<sup><FONT COLOR='#FF0000'>New</font></sup></li>";
s1+="					<li><a href='/mktlive/circuit_filter/summary/cktsummary.asp'>Circuit Summary</a></li>";
s1+="					<li><a href='/sensex/circuitfillter.aspx'>Circuit Filter</a></li></ul>";
//s1+="					<li><a href='#' style='text-decoration:none;color:#000000;cursor:default;'>Circuit Filter</a></li></ul>";
//s1+="			    		<ul class='slist01'><li><a href='#' style='text-decoration:none;color:#000000;cursor:default;'>Upper</a> <a href='/mktlive/circuit_filter/upper_cf/groupwise.asp' style='color:blue'>Group</a> | <a style='color:blue' href='/mktlive/circuit_filter/upper_cf/indexwise.asp'>Index</a></li>";
//s1+="			    		<li><a href='#' style='text-decoration:none;color:#000000;cursor:default;'>Lower</a> <a href='/mktlive/circuit_filter/lower_cf/groupwise.asp' style='color:blue'>Group</a> | <a style='color:blue' href='/mktlive/circuit_filter/lower_cf/indexwise.asp'>Index</a></li></ul>";
s1+="					<ul class='mlist01'><li><a href='/mktlive/newhghlow.asp'>New Highs / Lows</a></li>";
s1+="					<li><a href='/mktlive/groupvals.asp'>Top Turnovers</a></li>";
s1+="					<li><a href='/mktlive/groupvols.asp'>Top Volumes</a></li>";
s1+="					<li><a href='/mktlive/market_summ/margin.asp'>VaR / EL Margin</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><a href='/stockinfo/stockprc.aspx' class='lineheight'>Historical Data</a></h3>";
s1+="				</div>";
s1+="			</td>";
s1+="			<td class='col2'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>End-of-Day-Reports</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/mktlive/market_summ/lonshrtpos.asp'>BSE Gross Deliverables</a></li>";
s1+="					<li><a href='/mktlive/market_summ/tradhigh.asp'>Trading Highlights</a></li>";
s1+="					<li><a href='/mktlive/market_summ/odd.asp'>Odd Lot Market Statistics</a></li>";
s1+="					<li><a href='/mktlive/market_summ/margin_trad.asp'>Margin Trading</a></li>";
s1+="					<li><a href='/mktlive/market_summ/bulk_deals.asp'>Bulk Deals</a></li>";
s1+="					<li><a href='/mktlive/market_summ/block_deals.asp'>Block Deals</a></li>";
s1+="					<li><a href='/slb/slbssd.asp'>Short Sell</a></li>";
s1+="					<li><a href='/mktlive/market_summ/categorywise_turnover.asp'>Investor Categorywise Turnover</a></li>";
//s1+="					<li><a href='/slb/slbpd.asp'>SLB</a></li>";
//s1+="					<li><a href='/mktlive/bhavcopy.asp'>Bhav Copy</a></li>";
s1+="					<li><a href='/debtbhav/BhavCopyDebt.aspx'>Bhav Copy</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Periodic Updates</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/mktlive/impact_cost.asp'>Impact Cost</a></li>";
s1+="					<li><a href='/mktlive/varmargin_I.asp'>VaR Margin Groups</a></li>";
s1+="					<li><a href='/stockinfo/setcal.aspx'>Settlement Calendar</a></li>";
s1+="					<li><a href='/stockinfo/Cmmode.aspx'>Mode of Trading Data</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
//s1+="    <td class='col2'>";
//s1+="				<div class='cblock02'>";
//s1+="	                <ul class='mlist01'>";
//s1+="					<li><a href='/deri/HotLinks/Derimarketwatch.aspx'>F&O WATCH </a></li>";
//s1+="					<li><a href='/deri/Deri/Introduction.htm'>MARKET INFORMATION</a></li>";
//s1+="					<li><a href='/deri/Deri/Download.htm'>DOWNLOADS</a></li>";
//s1+="					<li><a href='/deri/HotLinks/Notices.aspx'>NOTICES</a></li>";
//s1+="					<li><a href='/deri/HotLinks/DeriArchive.aspx'>HISTORICAL DATA</a></li>";
//s1+="					</ul>";
//s1+="				</div>";
//s1+="			</td>";
s1+="		</tr>";
s1+="		<tr>";
s1+="			<td class='row2' colspan='3' style='height:45px;' nowrap='nowrap'>";
s1+="                	<div class='cblock02' style='float:left;width:170px;height:15px;text-align:center;vertical-align:middle;padding:4px 2px 2px 2px;margin:10px 5px 10px 8px;border:solid 2px #9E8C7B;background-color:#CAB49E;color:#000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/sensexstream.htm' style='color:#000;'>SENSEX Streamer</a></b>";
s1+="				</div>";
s1+="               	<div class='cblock02' style='float:left;width:170px;height:15px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 10px;border:solid 2px #9E8C7B;background-color:#CAB49E;color:#000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/sensex/index.htm' style='color:#000;'>SENSEX View</a></b>";
s1+="				</div>";
s1+="               	<div class='cblock02' style='float:left;width:170px;height:15px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 10px;border:solid 2px #9E8C7B;background-color:#CAB49E;color:#000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/cirbrief/new_notices_datewise.asp?day=today' style='color:#000;'>Circulars / Notices</a></b>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";

s1+="<div class='cblock00 indices' id='indices' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Live</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/mktlive/mktwatch.asp'>Indices Watch</a></li>";
//s1+="						<li><a href='/mktlive/mktwatch_sect.asp'>Sectoral Watch</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>End-of-Day</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/mktlive/indiceshighlights.asp'>Indices Highlights</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Periodic Updates</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/about/abindices/betavalues.asp'>Beta Values for SENSEX Scrips</a></li>";
//s1+="						<li><a href='/about/st_key/index_ratios.asp'>Index & Ratios</a></li>";
s1+="						<li><a href='/about/st_key/index_ratios2010.asp'>Index & Ratios</a></li>";
s1+="						<li><a href='/about/abindices/monthly_report.asp'>Monthly Report</a>&nbsp;<sup><FONT COLOR='#FF0000'>New</font></sup></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><a href='/stockinfo/indices.aspx' class='lineheight'>Historical Data</a></h3><br>";
s1+="					<h3><a href='/about/abindices/preface.asp'  class='lineheight'>Know more about Indices</a></h3>";
s1+="				</div>";
s1+="               	        <div class='cblock02' style='float:left;width:160px;height:15px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 6px;border:solid 2px #5f4024;background-color:#d7b698;color:#000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/sensex/index.htm' style='color:#000;'>SENSEX View</a></b>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 corporate' id='corporate' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Corporate Filings</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/mktlive/board_meeting.asp'>Forthcoming Board Meetings</a></li>";
s1+="					<li><a href='/mktlive/corp_Act.asp'>Forthcoming Corporate Actions</a></li>";
s1+="					<li><a href='/qresann/rstcal.asp'>Forthcoming Results</a></li>";
s1+="					<li><a href='/qresann/compres.asp'>Company Results</a></li>";
s1+="					<li><a href='/stockinfo/ann.aspx'>Corporate Announcements</a></li>";
s1+="					<li><a href='/shareholding/sharehold_search.asp'>Shareholding Patterns</a></li>";
s1+="					<li><a href='/Insidetrade.asp'>Disclosures - Insider Trading</a></li>";
s1+="					<li><a href='/Sast.asp'>Disclosures - SAST</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="			<td class='col2'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Listed Companies</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/about/list_comp.asp'>Active Companies</a></li>";
s1+="					<li><a href='/about/datal/change/changes.asp'>Change of Company Name</a></li>";
s1+="					<li><a href='/invdesk/unknown_cat.asp'>Unknown Category</a></li>";
s1+="					<li><a href='/about/datal/suspend.asp'>Suspended Companies</a></li>";
s1+="					<li><a href='/downloads/DirectorsDin.zip'>Suspended Companies - Directors</a></li>";
s1+="					<li><a href='/about/datal/delist/a-delist.asp'>Delisted Companies</a></li>";
s1+="					<li><a href='/ipo/schema.asp'>Information Memorandum</a></li>";
s1+="					<li><a href='/mktlive/contactinformation.asp'>Contact Information</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="			<td rowspan='2' class='col3'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Get Listed</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="					<li><a href='/about/Benefits.asp'>Benefits of Listing</a></li>";
s1+="					<li><a href='/about/abintrobse/listsec.asp'>Guidelines/ Checklist for Listing</a></li>";
s1+="					<li><a href='/about/abintrobse/Norms_for_Listing_Revocation.asp '>Norms for Listing/Revocation</a></li>";
s1+="					<li><a href='about/abintrobse/criteria_for_suspension.asp '>Criteria for Suspension</a></li>";
s1+="					<li><a href='/about/bse_deutsche.asp'>International Listing Cooperation</a></li>";
s1+="					<li><a href='/about/indonext.asp'>BSEIndonext</a></li>";
s1+="					<li><a href='/about/Circular_listcomp.asp'>Circulars to Listed Companies</a></li>";
s1+="					<li><a href='/about/compliance_new.asp'>Compliance</a></li>";
s1+="					<li><a href='/about/downloads.asp#companyrel'>Downloads</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="		<tr>";
s1+="			<td colspan='3' class='row2'>";
s1+="			<div class='cblock02 logo'>";
s1+="			<table cellpadding='0' cellspacing='0'>";
s1+="			<tr><td><h2><div class='lineheight' style='font-family:verdana;width:100px;padding:3px 15px 3px 15px;background-color:#FFFFFF;text-align:center;color:#000000;font-size:17px;'>STOCK<br> Watch</div></h2></td>";
s1+="			<td style='padding-left:5px;vertical-align:top;'><p style='padding-top:5px;color:#FFFFFF;font-size:11px;'>A single window with every stock market related information about the company. It is made available by BSE on the company's website.</p></td></tr></table>";
s1+="			</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 issuances' id='issuances' style='display:none;width:560px;'>";
s1+="	<table cellspacing='0' cellpadding='0' width='100%'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Public Issues</span></h3>";
s1+="				</div>";
s1+="				<div class='cblock02' style='margin-left:15px;'>";
s1+="					<h3><span  class='lineheight'>Book Building</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/bookbuilding/newbookbuilding.asp?status=l&ir_flag=IPO'>Live Issues</a></li>";
s1+="						<li><a href='/bookbuilding/newbookbuilding.asp?status=f&ir_flag=ipo'>Forthcoming Issues</a></li>";
s1+="						<li><a href='/bookbuilding/bookbuilding_hist.asp?ir_flag=ipo'>Historical Data</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02' style='margin-left:15px;'>";
s1+="					<h3><span  class='lineheight'>Fixed Price Issues</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/sensex/ipo_issue.aspx'>Live Issues</a></li>";
s1+="						<li><a href='/sensex/ipo_issue_forth.aspx'>Forthcoming Issues</a></li>";
s1+="						<li><a href='/sensex/ipo_pastissue.aspx'>Historical Data</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02' style='margin-left:15px;'>";
s1+="					<a href='/bookbuilding/about.asp' style='color:black;font-family:verdana;font-weight:bold;font-size:11px;'>Know more about Public Issues</a>";
s1+="				</div>";
s1+="				<div class='cblock02' style='margin-left:15px;'>";
s1+="					<a href='/bookbuilding/glossary.asp' style='color:black;font-family:verdana;font-weight:bold;font-size:11px;'>Glossary</a>";
s1+="				</div>";
s1+="			</td>";
s1+="			<td class='col2'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Prospectus</span>&nbsp;&nbsp; - &nbsp;&nbsp; <a href='/about/drhp.asp' style='color:#000'>DRHP</a></h3>";
s1+="					<h3><span  class='lineheight'>Prospectus</span>&nbsp;&nbsp; - &nbsp;&nbsp; <a href='/about/BondIssues.asp' style='color:#000'>Debt Issues</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><a href='/bookbuilding/scsb.asp'>ASBA Banks</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Reverse Book Building</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/bookbuilding/newbookbuilding.asp?status=l&ir_flag=rev'>Live Issues</a></li>";
s1+="						<li><a href='/bookbuilding/newbookbuilding.asp?status=f&ir_flag=rev'>Forthcoming Issues</a></li>";
s1+="						<li><a href='/bookbuilding/bookbuilding_hist.asp?ir_flag=rev'>Historical Data</a></li>";
s1+="						<li><a href='/bookbuilding/rbbsglossary.asp'>Glossary</a></li>";
s1+="						<li><a href='/bookbuilding/aboutrbbs.asp'>know more about RBBS</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span  class='lineheight'>Buyback</span></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/mktlive/market_summ/buyback/display.asp'>Live Issues</a></li>";
s1+="						<li><a href='/mktlive/market_summ/buyback/display_hist.asp'>Historical Data</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 members' id='members' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02' style='margin-left:10px;'>";
s1+="					<h3><a href='/about/Memberbse.asp' class='lineheight'>Membership @BSE</a></h3>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/dbm/dbm-phase2.asp'>Equity</a></li></ul>";
s1+="						<ul class='slist01'><li><a href='/about/subbroker.asp'>Subbroker</a></li>";
s1+="						<li><a href='/about/remiser.asp'>Remiser</a></li></ul>";
s1+="						<ul class='mlist01'><li><a href='/about/deri_member.asp'>Derivatives</a></li>";
s1+="						<li><a href='/about/authorisedpersons.asp'>Authorised Persons</a></li>";
s1+="						<li><a href='/dma.asp'>DMA</a></li>";
s1+="						<li><a href='/sensex/sor.aspx'>SOR</a></li>";
s1+="						<li><a href='/bseslb/member_process.aspx'>SLB</a></li>";
s1+="						<li><a href='/about/BSEstarmf_details.asp'>Mutual Fund (StAR MF)</a></li>";
s1+="						<li><a href='/about/memberCompliance.asp'>Membership Compliance</a></li>";
s1+="				</ul></div>";
s1+="				<div class='cblock02'>";
s1+="					<ul class='mlist01'>";
s1+="						<li style='padding-top:0px;'><a href='/cirbrief/new_notices_datewise.asp?day=today'>Notices</a></li>";
s1+="					        <li><a href='#' style='text-decoration:none;color:#000000;cursor:default;'>Rules & Regulations</a></li></ul>";
s1+="						<ul class='slist01'><li><a href='/downloads/about/bolt/BSE_Jan2010.zip'>Equity Segment</a></li>";
s1+="						<li><a href='/downloads/about/bolt/Rules_Deri.zip'>Derivative Segment</a></li></ul>";
s1+="						<ul class='mlist01'><li><a href='/about/abintrobse/inspection_comp.asp'>Inspection & Compliance</a></li>";
s1+="						<li><a href='/help/'>Members Helpdesk</a></li>";
s1+="						<li><a href='/about/members_portal.asp'>Members Portal</a></li></ul>";
s1+="				</div>";
s1+="			</td>";
s1+="			<td class='col2'>";
s1+="				<div class='cblock02'>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='#' style='color:black;font-family:verdana;font-weight:bold;font-size:11px;'>Members' Directory</a></li></ul>";
s1+="						<ul class='slist01'><li><a href='/memberdb/search/search.asp'>Equity Segment</a></li>";
s1+="						<li><a href='/deri/Deri/MemberShip.htm?L=2&id=hd1&Lid=11'>Derivatives Segment</a></li>";
s1+="						<li><a href='/memberdb/search/Search_debt.asp'>Debt Segment</a></li>";
s1+="						<li><a href='/memberdb/search/dir_subbrokers.asp'>Directory of Sub-Brokers</a></li>";
s1+="						<li><a href='/memberdb/search/dir_remesiers.asp'>Directory of Remisiers</a></li>";
s1+="						<li><a href='/mktbse/default.aspx'>Directory of AP</a></li>";
s1+="						<li><a href='/memberdb/search/printsearch.asp'>Search by Parameters</a></li></ul>";
s1+="					        <ul class='mlist01'><li><a href='/about/Memberbse.asp#mdisc'>Member Disclosure</a></li>";
s1+="						<li><a href='/about/datal/debent.asp'>SEBI Debarred Entities</a></li>";
s1+="						<li><a href='/about/illiquidscrips.asp'>llliquid scrips</a></li>";
s1+="					        <li><a href='/about/Memberbse.asp#otherinfo'>Other Related Information</a></li>";
//s1+="						<li><a href='/fiimail11.htm'>Latest FII Newsletter</a>&nbsp;&nbsp;&nbsp;<a href='http://bseplus.bseindia.com/Registration/subs.aspx?ServiceID=4DD71547-15E7-4671-AF53-205B40214070' style='color:red;'><b>subscribe</b></a></li>";
//s1+="						<li><a href='/sensex_bulletin_apr11_v7.htm' target='_blank'>Latest Weekly Newsletter</a>&nbsp;&nbsp;&nbsp;<sup><FONT COLOR='#FF0000'>New</font></sup></li>";
s1+="						<li><a href='/latest_newsletter.htm' target='_blank'>Latest Weekly Newsletter</a>&nbsp;&nbsp;&nbsp;<a href='http://bseplus.bseindia.com/Registration/WeeklyLetter.aspx' style='color:red;'><b>subscribe</b></a></li>";
s1+="						<li><a href='/about/FAQFeeStructure.asp'>FAQs</a></li>";
s1+="						<li><a href='/downloads/Activity Directory-2010.zip'>Quick Contacts</a></li>";
s1+="						<li><a href='/about/Memberbse.asp#tech1'>Technology</a></li>";
s1+="						<li><a href='/about/Memberbse.asp#prd1'>Products</a></li>";
s1+="						<li><a href='/about/downloads.asp#memberrel'>Downloads</a></li></ul>";	
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="		<tr>";
s1+="			<td class='row2' colspan='2' style='height:45px;' nowrap='nowrap'>";
s1+="                	<div class='cblock02' style='float:left;width:105px;height:15px;text-align:center;vertical-align:middle;padding:4px 2px 2px 2px;margin:10px 5px 10px 5px;border:solid 2px #B1BCCA;background-color:#2E4F69;color:#fff;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/gadget/gadget.asp' style='color:#fff;'>Market Watch</a></b>";
s1+="				</div>";
s1+="               	<div class='cblock02' style='float:left;width:105px;height:15px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 5px;border:solid 2px #B1BCCA;background-color:#2E4F69;color:#fff;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/sensex/index.htm' style='color:#fff;'>SENSEX View</a></b>";
s1+="				</div>";
s1+="               	<div class='cblock02' style='float:left;width:105px;height:15px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 5px;border:solid 2px #B1BCCA;background-color:#2E4F69;color:#fff;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/tagcloud/mktgalaxy.aspx' style='color:#fff;'>Market Galaxy</a></b>";
s1+="				</div>";
s1+="                 <div class='cblock02' style='float:left;height:15px;width:45px;text-align:center;padding:4px 2px 2px 2px;margin:10px 5px 10px 5px;border:solid 2px #B1BCCA;background-color:#F57826;color:#fff;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/rss/bserss.asp' style='color:#fff;'>RSS</a></b>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 investor' id='investor' style='display:none;width:260px;'>";
s1+="	<table cellspacing='0' cellpadding='0' style='width:260px;'>";
s1+="		<tr>";
s1 += "			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/invdesk/services.asp'>Guide for Investors</a></li>";
s1+="						<li><a href='/invdesk/coforeign.asp'>Opportunities for Foreign Investors</a></li>";
s1+="						<li><a href='/invdesk/invgrievstats.asp'>Complaints / Arbitration status</a></li>";
s1+="						<li><a href='/Arbitration/ArbitAwards.aspx'>Arbitration Awards</a></li>";
s1+="						<li><a href='/invdesk/invGrievances.asp'>Investors Grievances</a></li>";
s1+="						<li><a href='/cirbrief/notices_reg.asp'>Regulatory Orders</a></li>";
s1+="						<li><a href='/sensex/research.aspx'>Research Reports on Companies</a></li>";
s1+="						<li><a href='/invdesk/investors_awareness_programmes.asp'>Investors Awareness Programmes</a></li>";
s1+="						<li><a href='/invdesk/Arbitrage.asp'>Know more about Arbitration</a></li>";
s1+="						<li><a href='/invdesk/FAqs.asp'>FAQs</a></li>";
s1+="						<li><a href='/about/downloads.asp#investorrel'>Downloads</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="		<tr>";
s1+= "			<td class='col1' nowrap='nowrap' style='height:38px;'>";
s1+="               		<div class='cblock02' style='float:left;width:100px;height:15px;text-align:center;padding:3px 1px 1px 1px;margin:7px 3px 0px 15px;border:solid 2px #5f4024;background-color:#d7b698;color:#000000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/gadget/gadget.asp' style='color:#000;'>Market Watch</a></b>";
s1+="				</div>";
s1+="               		<div class='cblock02' style='float:left;width:105px;height:15px;text-align:center;padding:3px 1px 1px 1px;margin:7px 0px 0px 5px;border:solid 2px #5f4024;background-color:#d7b698;color:#000000;font-family:verdana;cursor:pointer;font-size:12px;'>";
s1+="					<b><a href='/tagcloud/mktgalaxy.aspx' style='color:#000;'>Market Galaxy</a></b>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 abticcl' id='abticcl' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+= "			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<ul class='mlist01'>";
s1+="						<li><a href='/iccl/about_iccl.aspx'>About ICCL</a></li>";
s1+="						<li><a href='/iccl/clear_settle.aspx'>Clearing and Settlement</a></li>";
s1+="						<li><a href='/iccl/clear_mem.aspx'>Clearing Members</a></li>";
s1+="						<li><a href='/iccl/clear_banks.aspx'>Clearing Banks</a></li>";
s1+="						<li><a href='/iccl/risk_mgmt.aspx'>Risk Management</a></li>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 training' id='training' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><a target='_new' href='http://www.bsebti.com/about_bti/vision_mission.html' class='lineheight'>About BSE Institute Ltd</h3>";
//s1+="					<ul class='mlist01'>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/programs_sub.asp');\">Programmes</a></li>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/feestructure.asp');\">Fee Structure</a></li>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/schedule.asp');\">Current Schedule</a></li>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/app_coupon.asp');\">Application Form</a></li>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/faqprog.asp');\">FAQs</a></li>";
//s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><a  target='_new' href='http://www.bsebti.com/about_bti/our_offerings.html'>Programs </a></h3>";
//s1+="					<ul class='mlist01'>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/nism.asp');\">About NISM</a></li>";
//s1+="						<li><a href='#' onclick=\"javascript:popup('training/nismregistration.asp');\">Registration</a></li>";
//s1+="					</ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/international_prog/in_india.html'>International Programs</a></span></h3>";

s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/custom_design/benefits.html'>Corporate Programs</a></span></h3>";

//s1+="					<h3><a target='_new' href='http://www.bseindia.com/Game' class='lineheight'>Stock Simulation Game</a></h3>";
s1+="				</div>";

//s1+="				<div class='cblock02'>";
//s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/partnerships/accre_pro.html'>Partnership </a></span></h3>";
//
//s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/certification/bse_test.html'>BSE Certification </a></span></h3>";

//s1+="					<h3><a target='_new' href='http://www.bseindia.com/Game' class='lineheight'>Stock Simulation Game</a></h3>";
s1+="				</div>";
//s1+="				<div class='cblock02'>";
//s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/certification/cert_calender.html'>Certification Calender</a></span></h3>";
//
//s1+="				</div>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bseindia.com/training/nism.asp'>NISM Certification </a></span></h3>";

//s1+="					<h3><a target='_new' href='http://www.bseindia.com/Game' class='lineheight'>Stock Simulation Game</a></h3>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
//s1+="					<h3><span class='lineheight'><a  target='_new' href='http://payment.bseindia.com/defaultNISM.asp'>NISM Registration</a></span></h3>";

s1+="				</div>";

s1+="			</td>"
s1+="			<td class='col2'>";
s1+="				<div class='cblock02'>";
//s1+="					<h3><span class='lineheight'>Certifications</span></h3>";
s1+="					<ul class='mlist01'>";
/*s1+="						<li><a  target='_new' href='http://test.bseindia.com/bsebti_test/about_bti/our_offerings.html'>Our Offerings</a></li>";
*/s1+="						<li><a  target='_new' href='http://www.bsebti.com/other/current_program_schedule.html'>Current Program Schedule</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/certification/cert_calender.html'>Current Certification Schedule</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/other/test_center.html'>List of Test Centers</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/programs/ol_payment.html'>Register Online</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/other/faqs.html'>FAQs</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/programs/contact.aspx'>Contact Us</a></li>";
s1+="						<li><a  target='_new' href='http://www.bsebti.com/other/help_desk.html'>Help Desk</a></li>";
s1+="						<li><a  target='_new' href='http://www.bseindia.com/Game/'>Stock Simulation Game</a></li>";
s1+="					</ul>";
s1+="				</div>";
//s1+="				<div class='cblock02'>";
//s1+="					<h3><span class='lineheight'><a  target='_new' href='http://www.bsebti.com/programs/educational_visit.html'>Educational Visits</a></span></h3>";
//s1+="					<h3><span class='lineheight'><a  href='http://www.bseindia.com/Game/'>Stock Simulation Game</a></span></h3>";
////s1+="					<h3><a href='#' onclick=\"javascript:popup('whtsnew/whats_new.asp');\" class='lineheight'>What's New</a></h3><br>";
////s1+="					<a href='#' onclick=\"javascript:popup('training/about.asp');\" style='color:black;font-family:verdana;font-weight:bold;font-size:11px;'>Know more about BTI</a>";
//s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div class='cblock00 products' id='products' style='display:none;'>";
s1+="	<table cellspacing='0' cellpadding='0'>";
s1+="		<tr>";
s1+="			<td class='col1'>";
s1+="				<div class='cblock02'>";
s1+="					<h3><span class='lineheight'>Data</span></h3>";
s1+="					<ul class='mlist01'><li><a href='/about/abtip.asp'>Introduction</a></li>";
s1+="					<li><a href='/about/datapdcts.asp'>Products</a></li>";
s1+="					<li><a href='/about/TandC.asp'>Terms & Conditions</a></li>";
s1+="					<li><a href='/about/Faqs.asp'>FAQs</a></li></ul>";
s1+="				</div>";
s1+="				<div class='cblock02'>";
//s1+="					<h3><a href='/about/BSEStarMF.asp' class='lineheight'>BSE StAR MF</a></h3>";
s1+="					<h3><a href='/fastrade/fastrade.asp' class='lineheight'>FASTRADE</a></h3>";
s1+="					<h3><a href='/fastrade/Webfastrade.asp' class='lineheight'>FASTRADE on Web</a></h3>";
s1+="					<h3><a href='/fastrade/Mobilefastrade.asp' class='lineheight'>FASTRADE on Mobile</a></h3>";
//s1+="					<h3><a href='/about/ETFTrade.asp' class='lineheight'>ETFs</a></h3>";
s1+="					<h3><a href='/login.asp?flag=1&type=1' class='lineheight'>My BSE</a></h3>";
s1+="					<h3><a href='/mybse/onlinetrade/trd_confirm.asp' class='lineheight'>Trade Check</a></h3>";
//s1+="					<h3><a href='/sensex/index.htm' class='lineheight'>SENSEX View</a></h3>";
//s1+="					<h3><a href='/tagcloud/mktgalaxy.aspx' class='lineheight'>Market Galaxy</a></h3>";
//s1+="					<h3><a href='/er_section/Economic.asp' class='lineheight'>Research & Publications</a></h3>";
s1+="					<h3><a href='/gadget/gadget.asp' class='lineheight'>Market Watch</a></h3>";
s1+="					<h3><a href='http://www.bsepsu.com/' class='lineheight'>BSEPSU.com</a></h3>";
s1+="					<h3><a href='http://www.directorsdatabase.com/' class='lineheight'>Directors Database</a></h3>";
s1+="					<h3><a href='/clause49.asp' class='lineheight'>Clause49 Forms</a></h3>";
//s1+="					<h3><a href='http://www.bsewebx.co.in/stsb/Login.asp' class='lineheight'>Trade@BSE Webx</a></h3>";
s1+="					</ul>";
s1+="				</div>";
s1+="			</td>";
s1+="		</tr>";
s1+="	</table>";
s1+="</div>";
s1+="<div id='bse' style='display:none;'>";
s1+="</div>";
IH(id,s1);
applystyle(mid,objli);
}

function O(id)
{
	return document.getElementById(id);
}
function IH(id,ic)
{
	O(id).innerHTML=ic;
}
function SD(id,ds)
{
	O(id).style.display=ds;
}
	
 	
	function mHd(d,e)
	{
	}
	
	function stt()
	{
	odl = document.getElementById("dl");
	odl.innerHTML = "23";
	if (odl.style.display == "none")
		odl.style.display = "";
	else
		odl.style.display = "none";
	}
	function menuInit()
	{
	} 


