<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="verify-v1" content="vKvrL/kHLbl1blA71C3x6IR/ZIG4vFxAjzzg/j20dVA="/>
<script>
//Pop-under window II- By JavaScript Kit
//Credit notice must stay intact for use
//Visit http://javascriptkit.com for this script
//specify URLs to randomly select from and pop-under
var popunder=new Array()
popunder[0]="http://www.lifeiscolourful.com"
popunder[1]="http://www.stock-market-india.net"
//specify popunder window features
//set 1 to enable a particular feature, 0 to disable
var winfeatures="width=1024,height=768,scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=0"
//Pop-under only once per browser session? (0=no, 1=yes)
//Specifying 0 will cause popunder to load every time page is loaded
var once_per_session=1
///https://no editing beyond here required/////
function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}
function loadornot(){
if (get_cookie('popunder')==''){
loadpopunder()
document.cookie="popunder=yes"
}
}
function loadpopunder(){
win2=window.open(popunder[Math.floor(Math.random()*(popunder.length))],"",winfeatures)
win2.blur()
window.focus()
}
if (once_per_session==0)
loadpopunder()
else
loadornot()
</script>
<title>Stock Market India - Buy Calls - IPO Updates - Online Share Trading - Finance Articles</title>
	<link rel="canonical" href="https://stockmarketindia.net" />
<meta name="generator" content="WordPress 2.6"/> <!-- leave this for stats -->
<link rel="stylesheet" href="wp-content/themes/WP_Premium/style.css" type="text/css" media="screen"/>
<link rel="pingback" href="https://www.stockmarketindia.net/xmlrpc.php" />
<script type="text/javascript" src="wp-content/themes/WP_Premium/taber.js"></script>
<script type="text/javascript">
/* Optional: Temporarily hide the "tabber" class so it does not "flash"
   on the page as plain HTML. After tabber runs, the class is changed
   to "tabberlive" and it will appear. */
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
</script>
<script type="text/javascript" src="wp-content/themes/WP_Premium/hover.js"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.stockmarketindia.net/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.stockmarketindia.net/wp-includes/wlwmanifest.xml" /> 
<script type="text/javascript" src="https://www.stockmarketindia.net/wp-includes/js/jquery/jquery.js?ver=1.2.6"></script>
<meta name="generator" content="WordPress 2.6"/>
<script language="javascript" type="text/javascript">
<!--
		function collapseThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} else {
				comment.className += " collapsed";
			}
		}
		function expandThread( theId ) {
			var comment = document.getElementById(theId);
			if(!comment)
			{
				alert("ERROR:\nThe document structure is different\nfrom what Threaded Comments expects.\nYou are missing the element '"+theId+"'");
				return;
			}
			var theBody = findBody(comment);
			if(comment.className.indexOf("collapsed") > -1) {
				comment.className = comment.className.replace(" collapsed", "");;
			} 
		}
		function findBody(el)
		{
			var divs = el.getElementsByTagName("div");
			var ret;
			for(var i = 0; i < divs.length; ++i) {
				if(divs.item(i).className.indexOf("body") > -1)
					return divs.item(i);
			}
			return false;
		}
		function onAddComment() {
			//checkDocumentIntegrity();
			var el = document.getElementById("commentform");
			// Future release: Check if form is filled correctly and mark the form fields.
			el.submit();
		}
		function moveAddCommentBelow(theId, threadId, collapse)
		{
			expandThread( theId );
			var addComment = document.getElementById("addcomment");
			if(!addComment)
			{
			  	alert("ERROR:\nThreaded Comments can't find the 'addcomment' div.\nThis is probably because you have changed\nthe comments.php file.\nMake sure there is a tag around the form\nthat has the id 'addcomment'"); 
				return
			}
			var comment = document.getElementById(theId);
			if(collapse)
			{
				for(var i = 0; i < comment.childNodes.length; ++i) {
					var c = comment.childNodes.item(i);
					if(typeof(c.className) == "string" && c.className.indexOf("collapsed")<0) {
						c.className += " collapsed";
					}
				}
			}
			addComment.parentNode.removeChild(addComment);
			comment.appendChild(addComment);
			if(comment.className.indexOf("alt")>-1) {
				addComment.className = addComment.className.replace(" alt", "");					
			} else {
				addComment.className += " alt";
			}
		        var replyId = document.getElementById("comment_reply_ID");
			if(replyId == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no hidden form field called\n'comment_reply_ID'. This is probably because you\nchanged the comments.php file and forgot\nto include the field. Please take a look\nat the original comments.php and copy the\nform field over.");
			}
			replyId.value = threadId;
			var reRootElement = document.getElementById("reroot");
			if(reRootElement == null)
			{
				alert("Brians Threaded Comments Error:\nThere is no anchor tag called 'reroot' where\nthe comment form starts.\nPlease compare your comments.php to the original\ncomments.php and copy the reroot anchor tag over.");
			}
			reRootElement.style.display = "block";
			var aTags = comment.getElementsByTagName("A");
			var anc = aTags.item(0).id;
			//document.location.href = "#"+anc;
			document.getElementById("comment").focus();
		}
		function checkDocumentIntegrity()
		{
			str = "";
			str += checkElement("reroot","div tag");
			str += checkElement("addcomment", "div tag");
			str += checkElement("comment_reply_ID", "hidden form field");
			str += checkElement("content", "div tag");
			str += checkElement("comment", "textfield");
			str += checkElement("addcommentanchor", "anchor tag");
			if(str != "")
			{
				str = "Brian's Threaded Comments are missing some of the elements that are required for it to function correctly.\nThis is probably the because you have changed the original comments.php that was included with the plugin.\n\nThese are the errors:\n" + str;
				str += "\nYou should compare your comments.php with the original comments.php and make sure the required elements have not been removed.";
				alert(str);
			}
		}
		function checkElement(theId, elDesc)
		{
			var el = document.getElementById(theId);
			if(!el)
			{
				if(elDesc == null)
					elDesc = "element";
				return "- The "+elDesc+" with the ID '" +theId + "' is missing\n"; 
			}
			else 
				return "";
		}
		function reRoot()
		{
			var addComment = document.getElementById("addcomment");			
			var reRootElement = document.getElementById("reroot");
			reRootElement.style.display = "none";
			var content = document.getElementById("content");
			addComment.parentNode.removeChild(addComment);
			content.appendChild(addComment);
			addComment.className = addComment.className.replace(" alt", "");
			document.getElementById("comment").focus();				
			document.getElementById("comment_reply_ID").value = "0";
		}			
		function changeCommentSize(d)
		{
			var el = document.getElementById("comment");
			var height = parseInt(el.style.height);
			if(!height && el.offsetHeight)
				height = el.offsetHeight;
			height += d;
			if(height < 20) 
				height = 20;
			el.style.height = height+"px";
		}		
-->
</script>
<style type="text/css">
.comment 
{
	position: 				relative;
	margin:					3px;
	margin-top:				6px;
/*	border: 				1px solid #666; */
	padding:				4px 4px 4px 8px;
	background-color:		#fff;
}
.odd
{
	background-color: #f8f8f8;
}
.comment div {
	position: 				relative;
}
.comment .comment img
{
	margin: 				0px;
}
.comment .collapseicon 
{
	width: 					13px;
	height: 				13px;
	overflow:				hidden;
	background-image: 		url(wp-content/plugins/briansthreadedcomments_php-image-subthread-open.png);
}
.collapsed .collapseicon 
{
	background-image: 		url(wp-content/plugins/briansthreadedcomments_php-image-subthread.png);
}
.comment .reply {
	text-align: 			right;
	font-size: 				80%;
	padding: 				0px 6px 6px 0px;
}
.comment
{
	border: 	1px solid #ddd;
	margin-top: 			10px;
}
input#subscribe
{
	width: auto;
}
.comment .body .content
{
	padding:				0px 3px 0px 3px;
	width: 					100%;	
	overflow: 				auto; 
}
.comment .title abbr
{
	border: none;
}
.collapsed .body, .collapsed .comment
{
	display:				none;
}
/*
#addcomment small, #addcomment div
{
	padding:				3px;
}
*/
#commentform textarea {
	width: 97%;
}
</style>
<link rel="stylesheet" href="wp-content/plugins/oiopub-direct/images/output1.css" type="text/css"/>
	<!-- Clean Archives Reloaded v3.0.0 | http://www.viper007bond.com/wordpress-plugins/clean-archives-reloaded/ -->
	<style type="text/css">.car-collapse .car-yearmonth { cursor: s-resize; } </style>
	<script type="text/javascript">
		//<![CDATA[
			jQuery(document).ready(function() {
				jQuery('.car-collapse').find('.car-monthlisting').hide();
				jQuery('.car-collapse').find('.car-monthlisting:first').show();
				jQuery('.car-collapse').find('.car-yearmonth').click(function() {
					jQuery(this).next('ul').slideToggle('fast');
				});
				jQuery('.car-collapse').find('.car-toggler').click(function() {
					if ( 'Expand All' == jQuery(this).text() ) {
						jQuery(this).parent('.car-container').find('.car-monthlisting').show();
						jQuery(this).text('Collapse All');
					}
					else {
						jQuery(this).parent('.car-container').find('.car-monthlisting').hide();
						jQuery(this).text('Expand All');
					}
					return false;
				});
			});
		//]]>
	</script>
<style type="text/css">.recentcomments a{display:inline !important;padding: 0 !important;margin: 0 !important;}</style>
</head>
<body>
<div id="header">
 	<div id="header-in">
    <p class="title"><a href="/" title="Stock Market India - Buy Calls - IPO Updates - Online Share Trading - Finance Articles">Stock Market India - Buy Calls - IPO Updates - Online Share Trading - Finance Articles</a></p>
    <p class="description">Daily Updates about Stock Market in India, look for information about upcoming IPOs, IPO Allotment Status, Updated Business News!! Free trading articles and technical analysis softwares.</p>
	<br>
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-8364469433500892";
/* SMI.net, 728x90, created 1/29/08 */
google_ad_slot = "3130893074";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
	<div id="nav">
	<ul>
		<li class="current_page_item"><a href="/">Home</a></li>		
		<li class="page_item page-item-2"><a href="about/" title="About">About</a></li>
<li class="page_item page-item-3"><a href="forum/" title="forum">forum</a></li>
<li class="page_item page-item-310"><a href="discussions/" title="Stock Market Live Discussions">Stock Market Live Discussions</a></li>
	</ul>
	</div>
	<div class="subscribe">
	 	<span class="rss"><a href="/"><img src="wp-content/themes/WP_Premium/images/rss.gif"></img></a></span> 
		 <div class="subscribeform">
		  <p>Subscribe via Email </p>
<form action="http://www.feedburner.com/fb/a/emailverify" rel="nofollow" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1618415', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p><input type="text" style="width:140px" name="email"/>&nbsp;<input type="hidden" value="http://feeds.feedburner.com/~e?ffid=1618415" name="url"/><input type="hidden" value="Stock Market India - Online Share Trading - IPO Updates" name="title"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe"/></p></form>
 		 </div>
	</div>
	</div>
</div>
<div class="container-top"></div>
<div id="container">
 <!--header.php end-->
<div id="content">
<div>
<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1618415', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p><b>For *Everyday* Free updates on Buy Calls, Stock Splits, Bonus, Rights Issues & IPO:</b></p><p><input type="text" style="width:140px" name="email"/>&nbsp;&nbsp;<input type="hidden" value="http://feeds.feedburner.com/~e?ffid=1618415" name="url"/><input type="hidden" value="Stock Market India - Online Share Trading - IPO Updates" name="title"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Enter Your Email Address"/></p><p><h3>Subscribe to the mailing list and get  absolutely FREE <b>*INVESTOR EBOOK*</b></h3></p></form>
</div>
<br><br>
	<!--comment count on right-->
	<div class="comm"><span><a href="hot-chips-buy-call-tutis-techno/#respond" title="Comment on Hot Chips Buy Call: TUTIS TECHNO">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-328"><a href="hot-chips-buy-call-tutis-techno/" rel="bookmark" title="Permanent Link to Hot Chips Buy Call: TUTIS TECHNO">Hot Chips Buy Call: TUTIS TECHNO</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 23, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">Tutis Techno: BSE Code 532311. CMP: Rs.19</p>
<p>Being a leading player in IT and BPO solutions, it is making news these days. Tutis Technologies is the parent company of the Vishal IT, with a 51.51 per cent stake, which is going to tap the primary market. This IPO will unlock the value for the Tutis Technologies, considering the premium, which Vishal IT is demanding from the market. Looking at potential for the value appreciation in the counter, investors, as well as broking firms, are taking interest. On the verge of an IPO, the parent company is expected to gain momentum. The price has moved already from Rs 13.76 to Rs 18 in the last few days. It’s a good bet for short-term risk-takers</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/hot-chips-buy-call-tutis-techno/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><a href="http://www.stockmarketindia.net/tag/buy-calls/" rel="tag">Buy Calls</a>, <a href="http://www.stockmarketindia.net/tag/recommendations/" rel="tag">recommendations</a>, <a href="http://www.stockmarketindia.net/tag/stock-market-buy-calls/" rel="tag">stock market buy calls</a><br />-->
	<div class="cat"><span><a href="category/uncategorized/" title="View all posts in Uncategorized" rel="category tag">Uncategorized</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="great-newsbiggest-gain-in-sensex-in-last-few-months/#respond" title="Comment on Great News! Biggest Gain in Sensex in Last Few Months">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-330"><a href="great-newsbiggest-gain-in-sensex-in-last-few-months/" rel="bookmark" title="Permanent Link to Great News! Biggest Gain in Sensex in Last Few Months">Great News! Biggest Gain in Sensex in Last Few Months</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 23, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">There is no need to update you all, that UPA government won the trust vote and it got big thumbs up from the stock markets as well. What a relief for us!</p>
<p>Today, Sensex spurted by 850 points as it again came close to 15000 marks that was looking a very distant target only a couple of days ago. The biggest gainers of the market were power stocks as well as the ADA group stocks while banks too maintained the momentum they have shown in past few days. </p>
<p><strong>All the sector indices were up. Volumes were extremely good and the breadth was excellent. </strong></p>
<p>So far the leaders from banking, Power, Realty and Infra have had a very good run up. Even though, it has been discussed that stocks like SBI, Reliance Cap, L&#038;T, Bhel, REL, NTPC and ICICI bank might consolidate. Nifty faces immediate resistance around 4510 and a stronger one around 4570 while support is now at around 4390-4410 and a stronger one around 4335-4350.</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/great-newsbiggest-gain-in-sensex-in-last-few-months/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><a href="http://www.stockmarketindia.net/tag/market/" rel="tag">market</a>, <a href="http://www.stockmarketindia.net/tag/sensex/" rel="tag">Sensex</a><br />-->
	<div class="cat"><span><a href="category/market-news/" title="View all posts in Market News" rel="category tag">Market News</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="hot-chips-buy-call-sterlite-india/#respond" title="Comment on Hot Chips Buy Call: Sterlite India">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-325"><a href="hot-chips-buy-call-sterlite-india/" rel="bookmark" title="Permanent Link to Hot Chips Buy Call: Sterlite India">Hot Chips Buy Call: Sterlite India</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 22, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">Sterlite India: BSE code: 500900</p>
<p>During the last few session, the metal sector has performed well in the market despite the gradual fall in the other counters. Being one of the leading players in copper manufacturing the company is catching eyes of investors on the street. According to some market sources, the counter has a lot of potential for appreciation in the price, which is evident from the hefty volume in the market. Top broking firm looking at its prospects, are tracking the counter and have started accumulating the scrip. Again, looking at the technical chart the counter looks a bit attractive, giving room to investors to place a midium to short-term bet.</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/hot-chips-buy-call-sterlite-india/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><a href="http://www.stockmarketindia.net/tag/buy-calls/" rel="tag">Buy Calls</a><br />-->
	<div class="cat"><span><a href="category/buy-calls/" title="View all posts in Buy Calls" rel="category tag">Buy Calls</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="today-was-record-date-for-tricom-india-stock-split/#respond" title="Comment on Today was Record date for Tricom India stock split">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-322"><a href="today-was-record-date-for-tricom-india-stock-split/" rel="bookmark" title="Permanent Link to Today was Record date for Tricom India stock split">Today was Record date for Tricom India stock split</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 22, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">Tricom India had fixed 22 July 2008 as the record date for the sub-division of 1 equity share of Rs 10 each into 5 equity shares of Rs 2 each. Whoever have held the shares today, would be eligible for this stock split.</p>
<p>On 4 July 2008, Tricom India acquired 100% interest in US based Pacific Data Centers, Inc through its subsidiary Tricom Document Management, Inc for $2.25 million.</p>
<p>Tricom India’s net profit rose 13.90% to Rs 5 crore on 15.51% increase in net sales to Rs 12.14 crore in Q4 March 2008 over Q3 December 2007.</p>
<p>The company provides non-voice related information technology enabled services (ITES) – business process outsourcing (BPO) services for global businesses.</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/today-was-record-date-for-tricom-india-stock-split/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/record-date/" title="View all posts in Record Date" rel="category tag">Record Date</a>,  <a href="category/stock-split/" title="View all posts in Stock Split" rel="category tag">Stock Split</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="areva-td-india-stock-split-proposal/#respond" title="Comment on Areva T&amp;D India Stock-split proposal">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-321"><a href="areva-td-india-stock-split-proposal/" rel="bookmark" title="Permanent Link to Areva T&amp;D India Stock-split proposal">Areva T&#038;D India Stock-split proposal</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 22, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">Areva T&#038;D India jumped 6% to Rs 1615 on BSE after the company said its board will meet on 29 July 2008 to consider a 5-for-1 stock split. The company made this announcement during trading hours today, 22 July 2008. </p>
<p>Areva T&#038;D India will be a major beneficiary of the Indo-US nuclear deal if the deal fructifies. French giant Areva, which holds 72.18% stake in Areva T&#038;D (as at end march 2008) is best known for its nuclear power plant and transmission interests. It is the only company in the world that has interests in every industry linked to nuclear power - from mining uranium to dismantling old nuclear power plants.</p>
<p>The company’s products and systems serve to transmit and distribute electricity, ensure the reliability, quality and safety of energy flows. </p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/areva-td-india-stock-split-proposal/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/stock-split/" title="View all posts in Stock Split" rel="category tag">Stock Split</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="hot-chip-buy-calls-gtl/#respond" title="Comment on Hot Chip Buy Calls: GTL">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-318"><a href="hot-chip-buy-calls-gtl/" rel="bookmark" title="Permanent Link to Hot Chip Buy Calls: GTL">Hot Chip Buy Calls: GTL</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 22, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">GTL  BSE code: 500160</p>
<p>GTL has aroused interest among investors after it declared the results for Q1FY09 and announced a dividend of 30 per cent. The focus of GTL’s business model is on networking business. Anticipating great potential of this counter, brokers are confident it would fetch good returns for investors. A good momentum is on the cards in the near term. This is evident from the high deliverable quantity, with an upward movement in price and hefty volume. The movement on the technical chart also supports the optimism. Investors can take short or medium exposure.</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/hot-chip-buy-calls-gtl/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/buy-calls/" title="View all posts in Buy Calls" rel="category tag">Buy Calls</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="sadbhav-engineering-plans-stock-split/#respond" title="Comment on Sadbhav Engineering Plans Stock Split">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-320"><a href="sadbhav-engineering-plans-stock-split/" rel="bookmark" title="Permanent Link to Sadbhav Engineering Plans Stock Split">Sadbhav Engineering Plans Stock Split</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 21, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">I am not sure if you know this company very well, but Sadbhav Engineering constructs earthen dams, canals, and syphons, remodels and improves canals, rehabilitates, upgrades, widens and strengthens roads and highways and mines minerals. </p>
<p>This stock jumped 5% today to Rs 600 on BSE after the company said its board will meet on 29 July 2008 to consider stock-split. So today, you receive <a href="sci-gets-shipping-ministrys-green-signal-to-bonus-issue/">one bonus news</a> and this stock split news.</p>
<p>The stock hit a high of Rs 615.70 and a low of Rs 551.50 so far during the day. The stock had a 52-week high of Rs 1,600 on 7 January 2008 and a 52-week low of Rs 550 on 18 July 2008. The company’s current equity is Rs 12.50 crore. Face value per share is Rs 10.
</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/sadbhav-engineering-plans-stock-split/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/stock-split/" title="View all posts in Stock Split" rel="category tag">Stock Split</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="sci-gets-shipping-ministrys-green-signal-to-bonus-issue/#comments" title="Comment on SCI gets Shipping Ministry’s Green Signal to Bonus Issue">1</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-319"><a href="sci-gets-shipping-ministrys-green-signal-to-bonus-issue/" rel="bookmark" title="Permanent Link to SCI gets Shipping Ministry’s Green Signal to Bonus Issue">SCI gets Shipping Ministry’s Green Signal to Bonus Issue</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 21, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">SCI is a state-run shipping company, operates and manages a fleet of line vessels, tankers, bulk carriers, passenger vessels and off shore vessels.</p>
<p>Shipping Corporation India gets Shipping Ministry’s Green Signal to Bonus Issue and rose 0.19% to Rs 207.60 on BSE after the shipping ministry gave its green signal to the company’s proposal to issue one bonus equity share for every two shares held [1:2]. The company announced this during trading hours today, 21 July 2008. </p>
<p>Shipping Corporation India’s board will discuss the bonus issue proposal at a meeting to be held on 26 July 2008. Earlier, the company’s board at its meeting held on 20 May 2008 had approved the proposal to issue bonus shares and decided to forward the proposal to the shipping ministry for its approval.
</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/sci-gets-shipping-ministrys-green-signal-to-bonus-issue/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/bonus-issue/" title="View all posts in Bonus Issue" rel="category tag">Bonus Issue</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="hot-chip-buy-calls-tech-mahindra/#respond" title="Comment on Hot Chip Buy Calls: Tech Mahindra">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-317"><a href="hot-chip-buy-calls-tech-mahindra/" rel="bookmark" title="Permanent Link to Hot Chip Buy Calls: Tech Mahindra">Hot Chip Buy Calls: Tech Mahindra</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 21, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">TECH MAHINDRA BSE code: 532755</p>
<p>Tech Mahindra is one of the leading IT companies, providing IT solutions to the telecom industry in India and abroad. After a listless phase, the scrip recently gained momentum. Despite the looming slowdown in the IT sector, it is expected to post a good result in Q1FY09. The broking community is said to be taking interest in the counter, which has business linkages in European countries. This gives it a hedge against the current spell of slowdown in the US market. The recent spurt in volumes, which the counter has witnessed, are likely to continue. Therefore, investors can take exposure in this counter with a short to medium-term.</p></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/hot-chip-buy-calls-tech-mahindra/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><a href="http://www.stockmarketindia.net/tag/dalal-street-buy-calls/" rel="tag">dalal street buy calls</a>, <a href="http://www.stockmarketindia.net/tag/dalal-street-calls/" rel="tag">dalal street calls</a>, <a href="http://www.stockmarketindia.net/tag/dalal-street-journal/" rel="tag">dalal street journal</a><br />-->
	<div class="cat"><span><a href="category/buy-calls/" title="View all posts in Buy Calls" rel="category tag">Buy Calls</a></span></div>
	<div class="clearfix"></div>
	</div>
	<!--comment count on right-->
	<div class="comm"><span><a href="anil-ambani-reliance-communication-and-mtn-deal-called-off/#respond" title="Comment on Anil Ambani-Reliance Communication and MTN Deal Called Off">0</a></span></div>
	<!--post title link-->
	<h3 class="h1" id="post-316"><a href="anil-ambani-reliance-communication-and-mtn-deal-called-off/" rel="bookmark" title="Permanent Link to Anil Ambani-Reliance Communication and MTN Deal Called Off">Anil Ambani-Reliance Communication and MTN Deal Called Off</a></h3>
	<!--Post Meta-->
	<div class="post-meta-top">
	<div class="auth"><span>Posted by <strong><a href="author/admin/" title="Posts by admin">admin</a></strong></span></div>
	<div class="date"><span> at <strong>July 20, 2008</strong></span></div>
	</div>
	<div class="clearboth"></div>
	<!--read more-->
	<div class="KonaBody">Anil’s Reliance Communications and MTN called off on Friday their exclusive talks to create a top-10 global telecom firm, saying legal and regulatory issues meant they were unable to conclude a deal.</p>
<p>The talks were clouded by a claim to a right of first refusal on the Indian mobile carrier’s shares by Mukesh, who runs Reliance Industries , India’s largest firm, and who had started dispute proceedings over the issue.</p>
<p><a href="http://www.reuters.com/article/rbssOilGasRefiningMarketing/idUSBOM7654920080718" rel="nofollow">News Source</a></div>
	<a href="http://downloads.wordpress.org/plugin/post-plugin-library.zip">Post-Plugin Library missing</a>
<script src="https://feeds.feedburner.com/~s/stockmarketindiaupdates?i=http://www.stockmarketindia.net/anil-ambani-reliance-communication-and-mtn-deal-called-off/" type="text/javascript" charset="utf-8"></script>
<!-- Adsense -->
	<!--Post Meta-->
	<div class="post-bottom">
	<!--<strong>Tags: </strong><br />-->
	<div class="cat"><span><a href="category/market-news/" title="View all posts in Market News" rel="category tag">Market News</a></span></div>
	<div class="clearfix"></div>
	</div>
    <!-- Prev/Next page navigation -->
    <div class="page-nav">
	    <div class="nav-previous"></div>
	    <div class="nav-next"><a href="page/2/">Next Page</a></div>
    </div>
</div>
<!--include sidebar-->
<div id="sidebar" class="clearfix">
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-8364469433500892";
/* SMI.net, 336x280, created 1/29/08 */
google_ad_slot = "4515172730";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<br><br>
<!-- BEGIN CBOX - www.cbox.ws -->
<div align="center" id="cboxdiv">
<iframe frameborder="0" width="336" height="185" src="box/boxid-1819886-boxtag-584ezt-sec-main_ext_iframe/" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#F6F3E0 1px solid;" id="cboxmain"></iframe><br/>
<iframe frameborder="0" width="336" height="95" src="box/boxid-1819886-boxtag-584ezt-sec-form_ext_iframe/" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#F6F3E0 1px solid;border-top:0px" id="cboxform"></iframe>
</div>
<!-- END CBOX -->
</center>
<a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1618415">Get Free Buy Calls</a>
<br>
<div id="xsnazzy"><!--Search Box Start -->
<b class="xtop"><b class="xb1"></b><b class="xb2"></b><b class="xb3"></b><b class="xb4"></b></b>
<div class="xboxcontent">
				<div class="tabber">
					 <div class="tabbertab">
						  <h2>Search</h2>
  						  <div class="searchform">
<form method="get" id="searchform" action="/">
<input type="text" value="Search on this blog..." name="s" class="s" onfocus="if (this.value == 'Search on this blog...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search on this blog...';}"/>
<input type="image" class="button" src="wp-content/themes/WP_Premium/images/button-submit.gif" alt="Submit button"/>
</form>
</div>
  					 </div>
					  <div class="tabbertab">
						  <h2>Archives</h2>
						  <ul class="tablist">
						  	<li><a href="2008/07/" title="July 2008">July 2008</a></li>
	<li><a href="2008/06/" title="June 2008">June 2008</a></li>
	<li><a href="2008/05/" title="May 2008">May 2008</a></li>
	<li><a href="2008/04/" title="April 2008">April 2008</a></li>
	<li><a href="2008/03/" title="March 2008">March 2008</a></li>
	<li><a href="2008/02/" title="February 2008">February 2008</a></li>
	<li><a href="2008/01/" title="January 2008">January 2008</a></li>
						  </ul>
 					 </div>
					  <div class="tabbertab">
						  <h2>Categories</h2>
						  <ul class="tablist">
						  	<li class="cat-item cat-item-63"><a href="category/acquisitions/" title="View all posts filed under Acquisitions">Acquisitions</a>
</li>
	<li class="cat-item cat-item-60"><a href="category/banking/" title="View all posts filed under Banking">Banking</a>
</li>
	<li class="cat-item cat-item-6"><a href="category/bonus-issue/" title="View all posts filed under Bonus Issue">Bonus Issue</a>
</li>
	<li class="cat-item cat-item-66"><a href="category/business/" title="View all posts filed under Business">Business</a>
</li>
	<li class="cat-item cat-item-62"><a href="category/buy-back/" title="View all posts filed under Buy Back">Buy Back</a>
</li>
	<li class="cat-item cat-item-7"><a href="category/buy-calls/" title="View all posts filed under Buy Calls">Buy Calls</a>
</li>
	<li class="cat-item cat-item-65"><a href="category/credit-cards/" title="View all posts filed under Credit Cards">Credit Cards</a>
</li>
	<li class="cat-item cat-item-67"><a href="category/debt-consolidation/" title="View all posts filed under Debt Consolidation">Debt Consolidation</a>
</li>
	<li class="cat-item cat-item-71"><a href="category/dividend/" title="View all posts filed under Dividend">Dividend</a>
</li>
	<li class="cat-item cat-item-48"><a href="category/finance/" title="View all posts filed under Finance">Finance</a>
</li>
	<li class="cat-item cat-item-64"><a href="category/forex-trading/" title="View all posts filed under Forex Trading">Forex Trading</a>
</li>
	<li class="cat-item cat-item-46"><a href="category/income-tax/" title="View all posts filed under Income Tax">Income Tax</a>
</li>
	<li class="cat-item cat-item-70"><a href="category/insurance/" title="View all posts filed under Insurance">Insurance</a>
</li>
	<li class="cat-item cat-item-3"><a href="category/ipo/" title="View all posts filed under ipo">ipo</a>
</li>
	<li class="cat-item cat-item-5"><a href="category/ipo-allotment-status/" title="View all posts filed under IPO Allotment Status">IPO Allotment Status</a>
</li>
	<li class="cat-item cat-item-32"><a href="category/ipo-listing-day/" title="View all posts filed under IPO Listing Day">IPO Listing Day</a>
</li>
	<li class="cat-item cat-item-72"><a href="category/loans/" title="View all posts filed under Loans">Loans</a>
</li>
	<li class="cat-item cat-item-44"><a href="category/market-news/" title="View all posts filed under Market News">Market News</a>
</li>
	<li class="cat-item cat-item-49"><a href="category/mortgage/" title="View all posts filed under Mortgage">Mortgage</a>
</li>
	<li class="cat-item cat-item-50"><a href="category/mutual-funds/" title="View all posts filed under Mutual Funds">Mutual Funds</a>
</li>
	<li class="cat-item cat-item-61"><a href="category/real-estate/" title="View all posts filed under Real Estate">Real Estate</a>
</li>
	<li class="cat-item cat-item-33"><a href="category/recommendation/" title="View all posts filed under Recommendation">Recommendation</a>
</li>
	<li class="cat-item cat-item-22"><a href="category/record-date/" title="View all posts filed under Record Date">Record Date</a>
</li>
	<li class="cat-item cat-item-4"><a href="category/rights-issue/" title="View all posts filed under Rights Issue">Rights Issue</a>
</li>
	<li class="cat-item cat-item-8"><a href="category/stock-articles/" title="View all posts filed under Stock Articles">Stock Articles</a>
</li>
	<li class="cat-item cat-item-47"><a href="category/stock-split/" title="View all posts filed under Stock Split">Stock Split</a>
</li>
	<li class="cat-item cat-item-73"><a href="category/technical-analysis/" title="View all posts filed under Technical Analysis">Technical Analysis</a>
</li>
	<li class="cat-item cat-item-1"><a href="category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a>
</li>
	<li class="cat-item cat-item-45"><a href="category/union-budget-2008/" title="View all posts filed under Union Budget 2008">Union Budget 2008</a>
</li>
						  </ul>
 					 </div>
 			</div><!--Tabber end -->
</div>
<b class="xbottom"><b class="xb4"></b><b class="xb3"></b><b class="xb2"></b><b class="xb1"></b></b>
</div><!--Search box end -->
<div class="oio-zone-position" style="width:320px; height:100px;">
<div id="vba-1-1" class="oio-img-border" style="width:100px; height:100px; position:absolute; top:0px; left:0px;">
<a rel="nofollow" href="/"><img class="oio-img-position" alt="" src="http://www.stockmarketindia.net/wp-content/themes/WP_Premium/images/thumb1.gif" style="width:100px; height:100px;"/></a>
</div>
<div id="vba-1-2" class="oio-img-border" style="width:100px; height:100px; position:absolute; top:0px; left:110px;">
<a rel="nofollow" href="/"><img class="oio-img-position" alt="" src="http://www.stockmarketindia.net/wp-content/themes/WP_Premium/images/thumb1.gif" style="width:100px; height:100px;"/></a>
</div>
<div id="vba-1-3" class="oio-img-border" style="width:100px; height:100px; position:absolute; top:0px; left:220px;">
<a rel="nofollow" href="/"><img class="oio-img-position" alt="" src="http://www.stockmarketindia.net/wp-content/themes/WP_Premium/images/thumb1.gif" style="width:100px; height:100px;"/></a>
</div>
</div>
<br>
<!--<a href="http://www.stockmarketindia.net/wp-content/plugins/oiopub-direct/purchase.php?do=banner"><img src="http://www.stockmarketindia.net/wp-content/themes/WP_Premium/images/thumb1.gif"></a>-->
<div class="advertise">
<center>
<script type="text/javascript"><!--
google_ad_client = "pub-8364469433500892";
/* 336x280, created 2/19/08 */
google_ad_slot = "0803482683";
google_ad_width = 336;
google_ad_height = 280;
google_cpa_choice = ""; // on file
//-->
</script>
<script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
</div>
<div id="popular">
<table border="0" style="background-color: #EBEADF; padding: 5px;" cellspacing="0">
  <tr><td>
  <img src="groups/img/3nb/groups_bar.gif" height="26" width="132" alt="Google Groups">
  </td></tr>
  <tr><td style="padding-left: 5px">
  <b>Subscribe to stockmarketindia24</b>
  </td></tr>
  <form action="https://groups.google.com/group/stockmarketindia24/boxsubscribe">
  <tr><td style="padding-left: 5px;">
  Email: <input type="text" name="email">
  <input type="submit" name="sub" value="Subscribe">
  </td></tr>
</form>
<tr><td align="right">
  <a href="https://groups.google.com/group/stockmarketindia24" rel="nofollow">Visit this group</a>
</td></tr>
</table>
</div>
<div id="sidebarwrap" class="clearfix">
<!--Popular  Start -->
<div id="pxsnazzy">
<b class="pxtop"><b class="pxb1"></b><b class="pxb2"></b><b class="pxb3"></b><b class="pxb4"></b></b>
<div class="pxboxcontent">
	<div id="popular">
	<ul>
		<li>
		<h2>Recent Posts</h2>
		<ul>
						<li><a href="hot-chips-buy-call-tutis-techno/">Hot Chips Buy Call: TUTIS TECHNO</a></li>
						<li><a href="great-newsbiggest-gain-in-sensex-in-last-few-months/">Great News! Biggest Gain in Sensex in Last Few Months</a></li>
						<li><a href="hot-chips-buy-call-sterlite-india/">Hot Chips Buy Call: Sterlite India</a></li>
						<li><a href="today-was-record-date-for-tricom-india-stock-split/">Today was Record date for Tricom India stock split</a></li>
						<li><a href="areva-td-india-stock-split-proposal/">Areva T&#038;D India Stock-split proposal</a></li>
					</ul>
		</li>
	</ul>
	<div id="popular-bottom"></div>
	</div>
</div>
<b class="pxbottom"><b class="pxb4"></b><b class="pxb3"></b><b class="pxb2"></b><b class="pxb1"></b></b>
</div><!--Search box end -->
<div id="l_sidebar" class="clearfix">
 	<ul>
			<li id="text-6" class="widget widget_text">			<h2 class="widgettitle">Finance Links</h2>
			<div class="textwidget"><ul>
<li><a href="http://www.rightbiz.co.uk/" target="_blank">Commercial Property Businesses for Sale</a></li>
<li><a href="http://www.totallymoney.com/loans/bad-credit-loans.aspx" target="_blank">Adverse Debt Finance</a></li>
<li><a href="http://www.panamalaw.org/offshore_company.html" target="_blank">Offshore Company</a></li>
<li><a href="http://www.creditcardoffers.me.uk/" target="_blank">UK Credit Cards</a></li>
<li><a href="http://www.taxprintindia.com/" title="Payroll Accounting Software Download" target="_blank">Payroll Management</a></li>
</ul></div>
		</li>
<li id="linkcat-2" class="widget widget_links"><h2 class="widgettitle">Blogroll</h2>
	<ul class="xoxo blogroll">
<li><a href="http://www.debtconsolidationcare.com/">Debt Consolidation</a></li>
<li><a href="http://www.shakespearefinance.co.uk/homeowner-loans.html">Homeowner loans</a></li>
<li><a href="http://www.personalfinancecare.org/blog/" title="LE">Personal finance</a></li>
	</ul>
</li>
<li id="oiopub-links" class="widget oiopub_sidebar_links"><h2 class="widgettitle">Favorites</h2>
</li>
<a rel="nofollow" href="/">Advertise Here</a>
<br/>
<li id="oiopub-slots" class="widget oiopub_open_slots"><h2 class="widgettitle">Advertise Here</h2>
<ul class="oio-openslots"><li><a href="/">7</a> site wide link slots open</li>
<li><a href="/">5</a> banner image slots open</li>
</ul>
</li>
<li id="categories-1" class="widget widget_categories"><h2 class="widgettitle">Categories</h2>
		<ul>
			<li class="cat-item cat-item-63"><a href="category/acquisitions/" title="View all posts filed under Acquisitions">Acquisitions</a>
</li>
	<li class="cat-item cat-item-60"><a href="category/banking/" title="View all posts filed under Banking">Banking</a>
</li>
	<li class="cat-item cat-item-6"><a href="category/bonus-issue/" title="View all posts filed under Bonus Issue">Bonus Issue</a>
</li>
	<li class="cat-item cat-item-66"><a href="category/business/" title="View all posts filed under Business">Business</a>
</li>
	<li class="cat-item cat-item-62"><a href="category/buy-back/" title="View all posts filed under Buy Back">Buy Back</a>
</li>
	<li class="cat-item cat-item-7"><a href="category/buy-calls/" title="View all posts filed under Buy Calls">Buy Calls</a>
</li>
	<li class="cat-item cat-item-65"><a href="category/credit-cards/" title="View all posts filed under Credit Cards">Credit Cards</a>
</li>
	<li class="cat-item cat-item-67"><a href="category/debt-consolidation/" title="View all posts filed under Debt Consolidation">Debt Consolidation</a>
</li>
	<li class="cat-item cat-item-71"><a href="category/dividend/" title="View all posts filed under Dividend">Dividend</a>
</li>
	<li class="cat-item cat-item-48"><a href="category/finance/" title="View all posts filed under Finance">Finance</a>
</li>
	<li class="cat-item cat-item-64"><a href="category/forex-trading/" title="View all posts filed under Forex Trading">Forex Trading</a>
</li>
	<li class="cat-item cat-item-46"><a href="category/income-tax/" title="View all posts filed under Income Tax">Income Tax</a>
</li>
	<li class="cat-item cat-item-70"><a href="category/insurance/" title="View all posts filed under Insurance">Insurance</a>
</li>
	<li class="cat-item cat-item-3"><a href="category/ipo/" title="View all posts filed under ipo">ipo</a>
</li>
	<li class="cat-item cat-item-5"><a href="category/ipo-allotment-status/" title="View all posts filed under IPO Allotment Status">IPO Allotment Status</a>
</li>
	<li class="cat-item cat-item-32"><a href="category/ipo-listing-day/" title="View all posts filed under IPO Listing Day">IPO Listing Day</a>
</li>
	<li class="cat-item cat-item-72"><a href="category/loans/" title="View all posts filed under Loans">Loans</a>
</li>
	<li class="cat-item cat-item-44"><a href="category/market-news/" title="View all posts filed under Market News">Market News</a>
</li>
	<li class="cat-item cat-item-49"><a href="category/mortgage/" title="View all posts filed under Mortgage">Mortgage</a>
</li>
	<li class="cat-item cat-item-50"><a href="category/mutual-funds/" title="View all posts filed under Mutual Funds">Mutual Funds</a>
</li>
	<li class="cat-item cat-item-61"><a href="category/real-estate/" title="View all posts filed under Real Estate">Real Estate</a>
</li>
	<li class="cat-item cat-item-33"><a href="category/recommendation/" title="View all posts filed under Recommendation">Recommendation</a>
</li>
	<li class="cat-item cat-item-22"><a href="category/record-date/" title="View all posts filed under Record Date">Record Date</a>
</li>
	<li class="cat-item cat-item-4"><a href="category/rights-issue/" title="View all posts filed under Rights Issue">Rights Issue</a>
</li>
	<li class="cat-item cat-item-8"><a href="category/stock-articles/" title="View all posts filed under Stock Articles">Stock Articles</a>
</li>
	<li class="cat-item cat-item-47"><a href="category/stock-split/" title="View all posts filed under Stock Split">Stock Split</a>
</li>
	<li class="cat-item cat-item-73"><a href="category/technical-analysis/" title="View all posts filed under Technical Analysis">Technical Analysis</a>
</li>
	<li class="cat-item cat-item-1"><a href="category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a>
</li>
	<li class="cat-item cat-item-45"><a href="category/union-budget-2008/" title="View all posts filed under Union Budget 2008">Union Budget 2008</a>
</li>
		</ul>
</li>
<li id="calendar" class="widget widget_calendar"><h2 class="widgettitle">&nbsp;</h2>
<div id="calendar_wrap"><table id="wp-calendar" summary="Calendar">
	<caption>July 2008</caption>
	<thead>
	<tr>
		<th abbr="Monday" scope="col" title="Monday">M</th>
		<th abbr="Tuesday" scope="col" title="Tuesday">T</th>
		<th abbr="Wednesday" scope="col" title="Wednesday">W</th>
		<th abbr="Thursday" scope="col" title="Thursday">T</th>
		<th abbr="Friday" scope="col" title="Friday">F</th>
		<th abbr="Saturday" scope="col" title="Saturday">S</th>
		<th abbr="Sunday" scope="col" title="Sunday">S</th>
	</tr>
	</thead>
	<tfoot>
	<tr>
		<td abbr="June" colspan="3" id="prev"><a href="2008/06/" title="View posts for June 2008">&laquo; Jun</a></td>
		<td class="pad">&nbsp;</td>
		<td colspan="3" id="next" class="pad">&nbsp;</td>
	</tr>
	</tfoot>
	<tbody>
	<tr>
		<td colspan="1" class="pad">&nbsp;</td><td><a href="2008/07/01/" title="Buy Recommendation in Falling Market: Aban Offshore Company">1</a></td><td><a href="2008/07/02/" title="Mortgage rates raised by some lenders">2</a></td><td><a href="2008/07/03/" title="GMR Infra - A value buy at Rs.80, Good Pick in Volatile Market, Low Risk - Sure Gains, Sensex Tumbled Again Around 570 points, Technical Call: MGEI Industrial Systems - CMP 70, Target 95-100, Bajaj Auto: Hot Chips to Make a Quick Buck">3</a></td><td><a href="2008/07/04/" title="Ramco Systems Rights issue, Sesa Goa Bonus Issue and Stock Split Record Date, Stock Split Record Dates: Eastern Silk Industries and MIC Electronics">4</a></td><td><a href="2008/07/05/" title="Jubilant Organosys - Medium Term Investment for 25% Profit, Orbit Corporation - Real Estate Stock to Get Momentum">5</a></td><td><a href="2008/07/06/" title="Factors - Market Will Take Cues from Going Forward">6</a></td>
	</tr>
	<tr>
		<td><a href="2008/07/07/" title="IPO Allotment Status: KSK Energy Ventures, Lotus Eye Care Hospital, Avon Weighing Systems and Archidply Industries, Low Priced Scrip: Petronet LNG - Grab for Long Term, IRB Infrastructure Developers - Huge Interest in the Counter by Broking Firms, Exide Industries - Accumulate at the Current Levels, Overview of World Markets: Few Positive, Few Negative, Three Digit Losses in Dow, US Market in Bear Grip">7</a></td><td><a href="2008/07/08/" title="Advantages of Debt Consolidation Loans">8</a></td><td><a href="2008/07/09/" title="Buy Company with Strong Fundamentals in Turbulent Market, Mundra Port and SEZ Bounces today by 20% After Supreme Court’s Result, Why It Is Right time to Invest in Petronet LNG, Madras Aluminium Fixed Stock Split record date, Buyback proposal for Abbott India, Allied Digital Services gains on overseas acquisition">9</a></td><td>10</td><td>11</td><td><a href="2008/07/12/" title="GTC Industries - Excellent Bet with Virtually No Downward Risk">12</a></td><td><a href="2008/07/13/" title="Market may remain weak in the Coming Week">13</a></td>
	</tr>
	<tr>
		<td><a href="2008/07/14/" title="Corporate News That Would Interest You, Technical Analysis of Reliance Infra">14</a></td><td><a href="2008/07/15/" title="How to Survive in Current Volatile Market">15</a></td><td><a href="2008/07/16/" title="Technical Analysis of State Bank of India [SBI], Technical Analysis of Infosys">16</a></td><td>17</td><td><a href="2008/07/18/" title="Gujarat NRE Coke Bonus Issue and Rights Issue, Thakkers Developers Bonus Issue Record date">18</a></td><td>19</td><td><a href="2008/07/20/" title="Anil Ambani-Reliance Communication and MTN Deal Called Off">20</a></td>
	</tr>
	<tr>
		<td><a href="2008/07/21/" title="Hot Chip Buy Calls: Tech Mahindra, SCI gets Shipping Ministry’s Green Signal to Bonus Issue, Sadbhav Engineering Plans Stock Split">21</a></td><td><a href="2008/07/22/" title="Hot Chip Buy Calls: GTL, Areva T&amp;D India Stock-split proposal, Today was Record date for Tricom India stock split, Hot Chips Buy Call: Sterlite India">22</a></td><td><a href="2008/07/23/" title="Great News! Biggest Gain in Sensex in Last Few Months, Hot Chips Buy Call: TUTIS TECHNO">23</a></td><td id="today">24</td><td>25</td><td>26</td><td>27</td>
	</tr>
	<tr>
		<td>28</td><td>29</td><td>30</td><td>31</td>
		<td class="pad" colspan="3">&nbsp;</td>
	</tr>
	</tbody>
	</table></div></li>
		<li id="text-4" class="widget widget_text">						<div class="textwidget"><a href="http://www.lifeiscolourful.com/">Make Money Online</a><br>
<a href="https://quality-assurance-software-testing.blogspot.com/">Software Testing</a><br>
<a href="http://www.qualityvista.com/">Quality Vista</a><br>
<a href="http://www.autolinereviews.com/">Autoline Reviews</a><br>
<a href="http://www.fitnessplushealth.com/">Fitness and Health</a><br>
<a href="http://www.healthfitnessforyou.com/">Diet Plan</a><br>
<a href="http://healthtipsforyou.info/">Health Tips</a><br>
<a href="http://www.hastyhost.com/">Cheap Web Hosting</a><br>
<a href="https://lifeiscolorful.blogspot.com/">Life is Colorful</a><br>
</div>
		</li>
		<li id="text-1" class="widget widget_text">			<h2 class="widgettitle">Free Currency Trading</h2>
			<div class="textwidget"><iframe src="partners/aw_A-7012-G-9-Task-Get_ext_iframe/" width="120" height="600" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="NO">
<script language="JAVASCRIPT1.1" src="http://www.etoro.com/partners/aw.aspx?A=7012&amp;G=9&amp;Task=Get&amp;Browser=N">
</script>
</iframe></div>
		</li>
	</ul>
</div>	
<div id="r_sidebar" class="clearfix">
	<ul>
			<li id="text-3" class="widget widget_text">						<div class="textwidget"><p><a href="http://feeds.feedburner.com/stockmarketindiaupdates"><img src="-fc/stockmarketindiaupdates-bg-330000-fg-FFFFFF-anim-0.jpg" height="26" width="88" style="border:0" alt=""/></a></p>
<script type="text/javascript">
    itk_show_rank_badge();
</script>
<script type="text/javascript" src="itk/31658.js"></script>
<script type="text/javascript">itk_izea_ranks_acct="8b173ae18645c01185e45b1cbbbe4ce0"</script></div>
		</li>
<div class="oio-badge">
<a rel="nofollow" href="/"><img src="http://www.stockmarketindia.net/wp-content/plugins/oiopub-direct/images/badge.png" width="125" height="125" border="0" alt=""/></a>
</div>
		<li id="text-2" class="widget widget_text">			<h2 class="widgettitle">Live Market</h2>
			<div class="textwidget"><img alt="Bombay Stock Exchange" border="0" src="t-s--BSESN.jpg" width="180" height="104"></div>
		</li>
		<li id="recent-posts" class="widget widget_recent_entries">			<h2 class="widgettitle">Recent Posts</h2>
			<ul>
						<li><a href="hot-chips-buy-call-tutis-techno/">Hot Chips Buy Call: TUTIS TECHNO </a></li>
						<li><a href="great-newsbiggest-gain-in-sensex-in-last-few-months/">Great News! Biggest Gain in Sensex in Last Few Months </a></li>
						<li><a href="hot-chips-buy-call-sterlite-india/">Hot Chips Buy Call: Sterlite India </a></li>
						<li><a href="today-was-record-date-for-tricom-india-stock-split/">Today was Record date for Tricom India stock split </a></li>
						<li><a href="areva-td-india-stock-split-proposal/">Areva T&#038;D India Stock-split proposal </a></li>
						</ul>
		</li>
<li id="archives" class="widget widget_archive"><h2 class="widgettitle">Archives</h2>
		<ul>
			<li><a href="2008/07/" title="July 2008">July 2008</a></li>
	<li><a href="2008/06/" title="June 2008">June 2008</a></li>
	<li><a href="2008/05/" title="May 2008">May 2008</a></li>
	<li><a href="2008/04/" title="April 2008">April 2008</a></li>
	<li><a href="2008/03/" title="March 2008">March 2008</a></li>
	<li><a href="2008/02/" title="February 2008">February 2008</a></li>
	<li><a href="2008/01/" title="January 2008">January 2008</a></li>
		</ul>
</li>
		<li id="recent-comments" class="widget widget_recent_comments">			<h2 class="widgettitle">Recent Comments</h2>
			<ul id="recentcomments"><li class="recentcomments"><a href="sadbhav-engineering-plans-stock-split/" rel="external nofollow">Sadbhav Engineering Plans Stock Split</a> on <a href="sci-gets-shipping-ministrys-green-signal-to-bonus-issue/#comment-1197">SCI gets Shipping Ministry’s Green Signal to Bonus Issue</a></li><li class="recentcomments">MANISH on <a href="technical-analysis-of-infosys/#comment-1196">Technical Analysis of Infosys</a></li><li class="recentcomments">satya on <a href="technical-analysis-of-reliance-infra/#comment-1190">Technical Analysis of Reliance Infra</a></li><li class="recentcomments"><a href="http://stockmarketindiaburcalls,ipo/" rel="external nofollow">amit bajpai</a> on <a href="market-may-remain-weak-in-the-coming-week/#comment-1188">Market may remain weak in the Coming Week</a></li><li class="recentcomments">M RANJIT SINGH on <a href="rec-ipo-subscription-details/#comment-1183">REC IPO Subscription Details</a></li><li class="recentcomments"><a href="http://www.stockguide.googlepages.com/" rel="external nofollow">kris</a> on <a href="gmr-infra-a-value-buy-at-rs80/#comment-1182">GMR Infra - A value buy at Rs.80</a></li><li class="recentcomments">amit bajpai on <a href="buy-company-with-strong-fundamentals-in-turbulent-market/#comment-1181">Buy Company with Strong Fundamentals in Turbulent Market</a></li><li class="recentcomments">chirag on <a href="technical-call-mgei-industrial-systems-cmp-70-target-95-100/#comment-1170">Technical Call: MGEI Industrial Systems - CMP 70, Target 95-100</a></li><li class="recentcomments">shanakar on <a href="reliance-power-bonus-issue-record-date-declared/#comment-1169">Reliance Power Bonus Issue Record Date Declared</a></li><li class="recentcomments"><a href="stock-split-record-dates-eastern-silk-industries-and-mic-electronics/" rel="external nofollow">Stock Split Record Dates: Eastern Silk Industries and MIC Electronics</a> on <a href="invest-in-mic-electronics-considering-the-bright-prospects/#comment-1167">Invest in MIC Electronics Considering the Bright Prospects</a></li></ul>
		</li>
<li id="most-commented" class="widget widget_htnetmcp"><h2 class="widgettitle">Most Commented Posts</h2>
<ul class="mcplist">
<li class="mcpitem mcpitem-1"><a href="reliance-power-ipo-allotment-status/" rel="bookmark">Reliance Power IPO Allotment Status</a> <span class="mcpctr">(258)</span></li>
<li class="mcpitem mcpitem-2"><a href="reliance-power-bonus-shares-free-for-all-shareholders/" rel="bookmark">Reliance Power Bonus Shares - Free for All Shareholders</a> <span class="mcpctr">(98)</span></li>
<li class="mcpitem mcpitem-3"><a href="reliance-power-ipo-allotment-status-link-is-updated/" rel="bookmark">Reliance Power IPO Allotment Status Link is Updated</a> <span class="mcpctr">(84)</span></li>
<li class="mcpitem mcpitem-4"><a href="future-capital-ipo-allotment-and-refund/" rel="bookmark">Future Capital IPO: Allotment and Refund</a> <span class="mcpctr">(49)</span></li>
<li class="mcpitem mcpitem-5"><a href="reliance-power-bonus-issue-record-date-declared/" rel="bookmark">Reliance Power Bonus Issue Record Date Declared</a> <span class="mcpctr">(46)</span></li>
<li class="mcpitem mcpitem-6"><a href="record-date-for-reliance-power-bonus-shares/" rel="bookmark">Record Date for Reliance Power Bonus Shares</a> <span class="mcpctr">(36)</span></li>
<li class="mcpitem mcpitem-7"><a href="future-capital-ipo-allotment-status/" rel="bookmark"> Future Capital IPO Allotment Status</a> <span class="mcpctr">(32)</span></li>
<li class="mcpitem mcpitem-8"><a href="reliance-power-bonus-shares-issue-3-bonus-shares-for-every-5-held/" rel="bookmark">Reliance Power Bonus Shares Issue: 3 Bonus Shares for Every 5 Held</a> <span class="mcpctr">(20)</span></li>
<li class="mcpitem mcpitem-9"><a href="emaar-mgf-ipo-refund-money-did-you-get-it-yet/" rel="bookmark">Emaar MGF IPO Refund Money, Did you get it yet?</a> <span class="mcpctr">(19)</span></li>
<li class="mcpitem mcpitem-10"><a href="emaar-mgf-has-withdrawn-its-ipo-refund-in-10-15-days/" rel="bookmark">Emaar MGF has withdrawn its IPO, Refund in 10-15 days</a> <span class="mcpctr">(13)</span></li>
</ul>
</li>
<li id="tag_cloud" class="widget widget_tag_cloud"><h2 class="widgettitle">Popular Tags</h2>
<a href="tag/56/" class="tag-link-56" title="1 topic" rel="tag" style="font-size: 8pt;"></a>
<a href="tag/allotment-status/" class="tag-link-25" title="2 topics" rel="tag" style="font-size: 12.666666666667pt;">allotment status</a>
<a href="tag/basis-of-allotment/" class="tag-link-16" title="1 topic" rel="tag" style="font-size: 8pt;">Basis of Allotment</a>
<a href="tag/bonus-issues/" class="tag-link-51" title="1 topic" rel="tag" style="font-size: 8pt;">bonus issues</a>
<a href="tag/bse/" class="tag-link-43" title="1 topic" rel="tag" style="font-size: 8pt;">BSE</a>
<a href="tag/buy-calls/" class="tag-link-7" title="3 topics" rel="tag" style="font-size: 17.333333333333pt;">Buy Calls</a>
<a href="tag/company-bonus/" class="tag-link-53" title="1 topic" rel="tag" style="font-size: 8pt;">company bonus</a>
<a href="tag/company-stock-splits/" class="tag-link-59" title="1 topic" rel="tag" style="font-size: 8pt;">company stock splits</a>
<a href="tag/fundamental-analysis/" class="tag-link-31" title="1 topic" rel="tag" style="font-size: 8pt;">Fundamental Analysis</a>
<a href="tag/future-capital-holdings-limited/" class="tag-link-17" title="1 topic" rel="tag" style="font-size: 8pt;">Future Capital Holdings Limited</a>
<a href="tag/future-capitals/" class="tag-link-37" title="1 topic" rel="tag" style="font-size: 8pt;">Future Capitals</a>
<a href="tag/future-group/" class="tag-link-38" title="1 topic" rel="tag" style="font-size: 8pt;">Future Group</a>
<a href="tag/future-ventures/" class="tag-link-39" title="1 topic" rel="tag" style="font-size: 8pt;">Future Ventures</a>
<a href="tag/gas-credit-cards/" class="tag-link-68" title="1 topic" rel="tag" style="font-size: 8pt;">gas credit cards</a>
<a href="tag/india/" class="tag-link-27" title="1 topic" rel="tag" style="font-size: 8pt;">india</a>
<a href="tag/indian-stock-splits/" class="tag-link-57" title="1 topic" rel="tag" style="font-size: 8pt;">Indian stock splits</a>
<a href="tag/ipo/" class="tag-link-3" title="4 topics" rel="tag" style="font-size: 22pt;">ipo</a>
<a href="tag/ipo-allotment/" class="tag-link-15" title="1 topic" rel="tag" style="font-size: 8pt;">IPO Allotment</a>
<a href="tag/ipo-allotment-status/" class="tag-link-5" title="1 topic" rel="tag" style="font-size: 8pt;">IPO Allotment Status</a>
<a href="tag/ipo-filing/" class="tag-link-40" title="1 topic" rel="tag" style="font-size: 8pt;">IPO Filing</a>
<a href="tag/ipo-oversubscription-details/" class="tag-link-35" title="1 topic" rel="tag" style="font-size: 8pt;">IPO Oversubscription details</a>
<a href="tag/ipo-refund/" class="tag-link-14" title="1 topic" rel="tag" style="font-size: 8pt;">IPO Refund</a>
<a href="tag/listing-date/" class="tag-link-11" title="1 topic" rel="tag" style="font-size: 8pt;">listing date</a>
<a href="tag/listing-date-of-shares/" class="tag-link-12" title="1 topic" rel="tag" style="font-size: 8pt;">listing date of shares</a>
<a href="tag/nse/" class="tag-link-42" title="1 topic" rel="tag" style="font-size: 8pt;">NSE</a>
<a href="tag/onmobile-global-ipo/" class="tag-link-34" title="1 topic" rel="tag" style="font-size: 8pt;">OnMobile Global IPO</a>
<a href="tag/record-date/" class="tag-link-22" title="1 topic" rel="tag" style="font-size: 8pt;">Record Date</a>
<a href="tag/reliance/" class="tag-link-9" title="1 topic" rel="tag" style="font-size: 8pt;">Reliance</a>
<a href="tag/reliance-power/" class="tag-link-10" title="2 topics" rel="tag" style="font-size: 12.666666666667pt;">Reliance power</a>
<a href="tag/reliance-power-ipo/" class="tag-link-28" title="1 topic" rel="tag" style="font-size: 8pt;">reliance power ipo</a>
<a href="tag/rights-issue/" class="tag-link-4" title="1 topic" rel="tag" style="font-size: 8pt;">Rights Issue</a>
<a href="tag/sebi/" class="tag-link-41" title="1 topic" rel="tag" style="font-size: 8pt;">SEBI</a>
<a href="tag/share-split/" class="tag-link-58" title="1 topic" rel="tag" style="font-size: 8pt;">share split</a>
<a href="tag/stock-analysis/" class="tag-link-30" title="1 topic" rel="tag" style="font-size: 8pt;">Stock Analysis</a>
<a href="tag/stock-market-bonus/" class="tag-link-52" title="1 topic" rel="tag" style="font-size: 8pt;">stock market bonus</a>
<a href="tag/stock-split/" class="tag-link-47" title="1 topic" rel="tag" style="font-size: 8pt;">Stock Split</a>
<a href="tag/suzlon-energy/" class="tag-link-29" title="1 topic" rel="tag" style="font-size: 8pt;">Suzlon Energy</a>
<a href="tag/tata-steel/" class="tag-link-23" title="1 topic" rel="tag" style="font-size: 8pt;">tata steel</a>
<a href="tag/tata-steel-limited/" class="tag-link-26" title="1 topic" rel="tag" style="font-size: 8pt;">tata steel limited</a>
<a href="tag/telco/" class="tag-link-24" title="1 topic" rel="tag" style="font-size: 8pt;">telco</a>
<a href="tag/wockhard-hospitals/" class="tag-link-19" title="1 topic" rel="tag" style="font-size: 8pt;">Wockhard Hospitals</a>
<a href="tag/wockhardt-hospitals/" class="tag-link-18" title="1 topic" rel="tag" style="font-size: 8pt;">Wockhardt Hospitals</a>
<a href="tag/wokhard-hospitals/" class="tag-link-21" title="1 topic" rel="tag" style="font-size: 8pt;">Wokhard Hospitals</a>
<a href="tag/wokhardt-hospitals/" class="tag-link-20" title="1 topic" rel="tag" style="font-size: 8pt;">Wokhardt Hospitals</a></li>
	</ul>
</div>	 
</div>
</div>
<!--sidebar.php end-->
<!--include footer-->
<div class="clearfix"></div>
</div>
<div class="container-bottom"></div>
<div id="footer">
<div id="footer-wrap">
<p class="copyright">Powered by <a href="http://wordpress.org/" rel="nofollow">Wordpress</a> | <a href="http://cssace.com/free-wp-premium-theme-is-here/" rel="nofollow">WP Premium</a> theme by <a href="http://wpremix.com/" rel="nofollow">WP Remix</a> <br/>
Copyright 2007. Stock Market India - Buy Calls - IPO Updates - Online Share Trading - Finance Articles. All rights reserved</p>
<ul id="nav-footer"> 
	<li class="current_page_item"><a href="/">Home</a></li>		
	<li class="page_item page-item-2"><a href="about/" title="About">About</a></li>
<li class="page_item page-item-3"><a href="forum/" title="forum">forum</a></li>
<li class="page_item page-item-310"><a href="discussions/" title="Stock Market Live Discussions">Stock Market Live Discussions</a></li>
</ul>
<img src="wp-content/plugins/oiopub-direct/modules/tracker/tracker_php-pids-0.jpg" alt=""/>
<!-- Adding Kontera-->
<!-- Kontera ContentLink(TM);-->
<script type="text/javascript">
var dc_AdLinkColor = 'blue' ;
var dc_UnitID = 14 ;
var dc_PublisherID = 18762;
var dc_adprod = 'ADL' ;
var dc_isBoldActive='no';
</script>
<script type="text/javascript" src="javascript/lib/KonaLibInline.js"></script>
<!-- Kontera ContentLink(TM) --></div>
</div>
<!-- Site Meter -->
<script type="text/javascript" src="js/counter_site-s11stockmarket.js">
</script>
<noscript>
<a href="http://s11.sitemeter.com/stats.asp?site=s11stockmarket" target="_blank" rel="nofollow">
<img src="meter.asp-site-s11stockmarket.jpg" alt="Site Meter" border="0"/></a>
</noscript>
<!-- Copyright (c)2006 Site Meter -->
<script src="https://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-484578-1";
urchinTracker();
</script>
<img src="images/claimdot.gif" alt="ss_blog_claim=6aa2ecd180820f4aa1e9ad184a46fb80"/> <script type="text/javascript" src="itk/31658.js"></script>
<!--<script type="text/javascript">var infolink_pid = 8319;</script>
<script type="text/javascript" src="http://resources.infolinks.com/js/infolinks_main.js"></script>-->
</body>
</html>