ÿþ<!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> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>::Welcome to Rain Commodities Limited ::</title> <script src="js/Date.js" type="text/javascript" language="javascript"></script> <link href="CSS/Style.css" rel="stylesheet" type="text/css" /> <style type="text/css"> /*Example CSS for the two demo scrollers*/ #pscroller1{ width: 200px; height: 100px; padding: 5px; background-color: ffffff; font-size:10px; } #pscroller2 a{ text-decoration: none; } .someclass{ //class to apply to your scroller(s) if desired } </style> <script type="text/javascript"> /* arrays scrollers*/ var pausecontent=new Array() pausecontent[0]='<a href="http://www.bseindia.com/qresann/news.asp?newsid={33757359-4A73-4ADA-835C-9E85B7F4C467}&param1=1"target="_blank" class="BodyText"><b>March 17,2009 2:36:12 PM</b> <br /> Board to consider Buy Back of equity shares </a>' pausecontent[1]='<a href="http://www.bseindia.com/qresann/news.asp?newsid={039EE3EA-A1BD-47EA-9BBA-279D43CD798C}&param1=1" target="_blank"><b>March 12,2009 9:39:34 AM</b><br />TAudited Financial Results for Dec 31, 2008 </a>' pausecontent[2]='<a href="http://www.bseindia.com/qresann/news.asp?newsid={143410BE-334B-4AB4-8E3D-A7DC97D7A70D}&param1=1" target="_blank"><b>March 12,2009 9:31:51 AM</b><br />Board recommends Dividend</a> ' pausecontent[3]='<a href="http://www.bseindia.com/qresann/news.asp?newsid={78A3BB02-64B0-4897-BC82-2ECF3108082C}&param1=1" target="_blank"><b>March 03,2009 12:49:49 PM</b><br />Fitch Ratings</a> ' </script> <script type="text/javascript"> /*********************************************** * Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'3">'+content[2]+'</div></div>') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()},100) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 100) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2,div3){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 } </script> </head> <body> <center> <!--Container Start --> <div id="Container"> <!--Header Start --> <div id="Header"> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td align="left" valign="top"><img src="images/Top_img.jpg" width="900" height="75" border="0" usemap="#Map" /> <table width="30%" align="right" cellpadding="1" cellspacing="1"> <tr> <td>&nbsp;</td> </tr> </table></td></tr> </table> </div> <!--Header End --> <!--Menu Start --> <div id="Menu"> <table width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table width="100%" align="left" cellpadding="0" cellspacing="0"> <tr> <td width="85" class="Navigation_Current"><a href="Index.html">Home</a></td> <td width="15" class="Menu_Line">&nbsp;</td> <td width="79" class="Navigation_Normal"><a href="Products.html">Products</a></td> <td width="3" class="Menu_Line">&nbsp;</td> <td width="131" class="Navigation_Normal"><a href="Investors.html">Investor Relations</a><br /></td> <td width="3" class="Menu_Line">&nbsp;</td> <td width="125" class="Navigation_Normal"><a href="Contact.html">Contact Us </a></td> <td width="6" class="Menu_Line">&nbsp;</td> </tr> </table></td> <td width="50%" align="right"> <script type="text/javascript" language="javascript"> TimeStamp(); </script> </td> </tr> </table> </div> <!--Menu End --> <!--Banner Image Start --> <div ><table width="100%" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><img src="images/Center2.jpg" width="650" height="350" /></td> <td width="30%" valign="top"><table width="95%" cellpadding="1" cellspacing="0"> <tr> <td align="left" valign="middle"><table width="100%" cellpadding="0" cellspacing="0" > <tr class="BoxHead"> <td align="left" valign="middle">News</td> </tr> <tr class="Box" > <td valign="top"><table width="100%" cellpadding="0" cellspacing="0" class="Box" height="150px"> <tr> <td><table width="100%" cellspacing="0" cellpadding="0"> <tr> <td > <!-- Start of scrolling message display --> <script type="text/javascript"> //new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds) new pausescroller(pausecontent, "pscroller1", "someclass", 300) </script> </td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> <tr class="Box"> <td valign="top" class="Bodytext"><table width="100%" cellpadding="0" cellspacing="0"> <tr class="BoxHead"> <td align="left" valign="middle">StockTicker</td> </tr> <tr class="Box"> <td valign="top" class="Bodytext"><table width="100%" cellpadding="0" cellspacing="0" class="Box"> <tr> <td><table width="100%" cellspacing="1" cellpadding="1"> <tr> <td valign="top"><table width="100%" cellspacing="0" cellpadding="0"> <tr> <td><a href=" http://www.nseindia.com/companytracker/cmtracker.jsp?symbol=RAINCOM" target="_blank"><img src="http://ichart.finance.yahoo.com/t?s=RAIN.BO" width="192" height="96" alt="[Chart]" border="0"></a></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> </div> <!--Banner Image End --> <!--Body Start --> <div id="Pagebody"> <table width="100%" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><table width="100%" cellpadding="0" cellspacing="0"> <tr class="BoxHead"> <td align="left" valign="middle">WELCOME TO RAIN </td> </tr> <tr class="Box"> <td valign="top" class="Bodytext"><table width="100%" cellpadding="0" cellspacing="0" class="Box"> <tr> <td><table width="100%" cellspacing="2" cellpadding="2"> <tr> <td class="Bodytext">Rain Commodities Limited (&ldquo;RAIN&rdquo;/&rdquo;the Company&rdquo;) and its wholly owned subsidiaries, namely, Rain CII Carbon (Vizag) Limited and Rain CII Carbon LLC, USA <a href="http://www.raincii.com" target="_blank">(www.raincii.com</a>) are engaged in the production of Cement, Calcined Petroleum Coke and Power. The Company is the World&rsquo;s largest producer of CPC with a total capacity of 2.49 Million Tons Per Annum (MTPA). <br /> The Company markets cement under the brand &nbsp; <img src="images/Logo_Small.gif" width="80" height="18" />&nbsp;&nbsp;in Andhra Pradesh, Karnataka &amp; Tamil Nadu. The total cement capacity of the Company has recently been increased to 3.16 MTPA. <br /></td> </tr> </table></td> </tr> </table> <p></p></td> </tr> </table></td> <td valign="top">&nbsp;</td> </tr> </table> </div> <!--Body End --> <!--FooterStart --> <div id="Footer">Copyright &copy;2009 Rain Commodities Limited All Rights Reserved.</div> <!--Footer End --> </div> <!--Container End --> </center> <map name="Map" id="Map"><area shape="rect" coords="775,36,896,70" href="http://www.raincii.com" target="_blank" /> </map></body> </html>