AJAX does not work without an alert

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • knkk
    New Member
    • Jun 2007
    • 49

    AJAX does not work without an alert

    Instead of an id getting its innerHTML changed, the entire page is getting refreshed with this function of mine (you may want to look just at the end of the function where there's an alert):

    Code:
    function morerating(ratingform, checkflag, loc)
    {
    	var f = document.forms[ratingform];
    	var rating_done_flag = 0;
    	var params = "";
    	if (checkflag == true)
    		check = checkrating(ratingform);
    	else 
    		check = true;
    	if(check == true)
    	{
    		f.submit_rating_done.value = "";
    		for (i=0;i < f.elements.length;i++) { 
    			if(f.elements[i].type == 'radio' || f.elements[i].type == 'checkbox')
    			{
    				if(f.elements[i].checked)
    				{
    					params = params + f.elements[i].name +'='+ encodeURI(f.elements[i].value) + '&'; 
    					if (f.elements[i].name == "rating_1" || f.elements[i].name == "rating_2" || f.elements[i].name == "rating_3" || f.elements[i].name == "rating_4" || f.elements[i].name == "rating_overall")
    						rating_done_flag = 1;
    				}
    			}
    			else if (f.elements[i].name && f.elements[i].value)
    			{
    				params = params + f.elements[i].name +'='+ encodeURI(f.elements[i].value) + '&';
    			}
    		}
    		shows = loc;
    		xmlHttp=GetXmlHttpObject();
    		if (xmlHttp==null)
    		{
    			alert ("Browser does not support HTTP Request");
    			return;
    		}
    		if(document.getElementById('morehide'))
    		{
    			document.getElementById('morehide').style.display = "none";
    			document.getElementById('morehide').innerHTML = "";
    		}
    		if(shows == "rating_main_block" || shows == "rating_main_block_editorial" || shows == "loginbox" || shows == "editorial_loginbox")
    		{
    			params = params + "submit_rating_done=1&";
    			params = params + "xmlrequest=1&";
    		}
    		else
    		{
    			if(!document.getElementById('morehide'))
    			{
    				f.submit_rating_done.value = "Submit";
    			}
    		}
    		params = params + "shows="+shows;
    		var url='/blocks/profiles/common/user_store.php';
    		url=url + "?" + params;
    		xmlHttp.onreadystatechange=stateChangedALL;
    		xmlHttp.open("GET",url,true);
    		xmlHttp.send(null);
    		//setTimeout('window.scrollBy(0, 350)', 100);
    		//alert('help2');
    		return true;
    	}
    	else
    	{
    		return false;
    	}
    }
    That alert('help2'), if removed, caused the page to just reload, but with it, AJAX works fine. I tried a setTimeout option as you can see, but that doesn't seem to help either. I also tried setTimeout("ale rt('help2')", 1000).

    If it helps, these are the other functions referred to there, though they're pretty standard AJAX stuff:

    Code:
    function stateChangedALL()
    {
    	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    	{
    			document.getElementById(shows).style.display="block"
    			if (xmlHttp.responseText != "")
    				document.getElementById(shows).innerHTML=xmlHttp.responseText
    			else
    				document.getElementById(shows).style.display="none"
    			var the_node = document.getElementById(shows);
    			execJS(the_node);
    			if(document.getElementById(trashid))
    			{
    				xmlHttp2.send(null);
    			}
    	}
    	else
    	{
    			document.getElementById(shows).innerHTML="<br><br><div class=\"a9bl\" align=\"center\"><font color=black>Loading, please wait...</font><div>"
    	}
    }
    and

    Code:
    function GetXmlHttpObject()
    { 
        var req = false;
        // branch for native XMLHttpRequest object
        if(window.XMLHttpRequest && !(window.ActiveXObject)) 
    	{
    		try {
    			req = new XMLHttpRequest();
            } catch(e) {
    			req = false;
            }
        // branch for IE/Windows ActiveX version
        }
    	else if(window.ActiveXObject) 
    	{
           	try {
            	req = new ActiveXObject("Msxml2.XMLHTTP");
          	} catch(e) {
            	try {
              		req = new ActiveXObject("Microsoft.XMLHTTP");
            	} catch(e) {
              		req = false;
            	}
    		}
        }
    	return req
    }
    I'd be quite grateful for any pointers! Thank you for your time!
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    Where and when does morerating get called?

    Comment

    • knkk
      New Member
      • Jun 2007
      • 49

      #3
      Okay here's the entire page code:

      Code:
      <html><head><title>Neninthe - Editorial Review: Movies in Hyderabad on fullhyd.com</title>
      <meta http-equiv="content-type" content="text/html; charset=cp1252"><script language="JavaScript" src="/js/common.js"></script>
      <script language="JavaScript" src="/js/signup.js"></script>
      <link rel="stylesheet" href="/css/style_new.css" type="text/css"><link rel="stylesheet" href="/css/style_new_extra.css" type="text/css">
      <meta name="keywords" content="Hyderabad Secunderabad Indian local city guides best Telugu movies films reviews ratings community communities arts shopping music fashion lifestyle restaurants nightlife events sports tourism yellow pages hotels discounts sales shopping shops hostels entertainment services guest houses lodges education information travelling cinemas news directory maps accommodation andhra pradesh blogs friends dating singles netpals polls discussions forums chat jobs careers classifieds resumes real estate automobile">
      <link rel="icon" href="/favicon.ico" type="image/x-icon">
      <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"><script type="text/javascript">
      function calRemChar() {
      	clipped = false;
      	lenUSig = 0;
      	maxLength = 2000;
      	if (document.user_review.text.value.length > maxLength) { 
      		document.user_review.text.value = document.user_review.text.value.substring(0,maxLength);
      		charleft = 0;
      		clipped = true;
      	} else {
      		charleft = maxLength - document.user_review.text.value.length;
      	}
      	document.user_review.words_left.value = charleft;
      	return clipped;
      }
      function commentKey() {
      	supportsKeys = true;
      	calRemChar();
      }
      </script><script type="text/javascript">
      document.ratingform.text.focus()
      </script><script type="text/javascript">
      window.scrollBy(0,300)
      </script><script type="text/javascript">document.getElementById('tabs_table').scrollIntoView(true)</script></head><body align="CENTER" leftmargin="0" topmargin="0" class="TA" onload="writeMenus(); if(navigator.appName == 'Netscape'){document.getElementById('currlocation').style.height = '17px;'};" bgcolor="#ffffff" text="#ffffff">
      
      
      <!-- STARTING section/common/header.php -->
      
      <input name="showing" value="" type="hidden">
      
      		<table align="center" border="0" cellpadding="0" cellspacing="0" width="760">
      	<tbody><tr> 
      		<td height="1" width="169">	<img src="/imgs/common/spacer.gif" height="1" width="169"></td>
      		<td height="1" width="296"> <img src="/imgs/common/spacer.gif" height="1" width="296"></td>
      		<td height="1" width="295"> <img src="/imgs/common/spacer.gif" height="1" width="295"></td>
      	</tr>
       	<tr> 
      		<td class="a10w" colspan="3" style="position: relative;" bgcolor="#a30000" height="95" valign="top" width="760">
      
      			<div style="position: relative;">
      								<div style="">
      					<div style="width: 442px; float: left;">
      						<a href="http://www.newfullhyd.com"><img src="/imgs/common/fullhyd_logo_1.gif" border="0" height="90" width="442"></a></div>
      					<div style="width: 318px; height: 95px; float: right; text-align: right; background-image: url(/imgs/common/fullhyd_logo_repeat_1.gif); background-repeat: repeat-x;">
      										</div>
      				</div>
      			</div>
      		</td>
      
      	</tr>
      	<tr> 
      		<td bgcolor="#a30000" height="23" width="169"> <img src="/imgs/common/spacer.gif" height="23" width="169"></td>
      		<form style="margin: 0px;" name="search_form" method="get" action="/search/" onsubmit="set_showing()"></form>
      		<td colspan="2" class="a10w" align="right" bgcolor="#a30000" height="23" valign="middle" width="591">
      			<div style="float: right;"><a href="#"><img onclick="set_showing();" src="/imgs/common/go_go.gif" style="border: 0px none ;"></a></div>
      			<div style="padding: 1px 5px 0pt 0pt; float: right;">SEARCH <input name="qs" size="15" type="text">
      <!-- 				IN 
      				<SELECT NAME="area">
      				  <OPTION VALUE="all">All Areas</OPTION>
      				  <OPTION VALUE="Ameerpet">Ameerpet</OPTION>
      				  <OPTION VALUE="Begumpet">Begumpet</OPTION>
      				  <OPTION VALUE="Charminar">Charminar</OPTION>
      				  <OPTION VALUE="Dilsukhnagar">Dilsukhnagar</OPTION>
      				  <OPTION VALUE="Erragadda">Erragadda</OPTION>
      				  <OPTION VALUE="Gandipet">Gandipet</OPTION>
      				  <OPTION VALUE="Habsiguda">Habsiguda</OPTION>
      				</SELECT> -->
      				IN 
      				<select name="type" onkeypress="javascript: checkSearchSubmit(event)">
      
      				  <option value="all">All</option>
      				  <option value="locations">Locations</option>
      				  <option value="events">Upcoming Events</option>
      				  <option value="eventsa">All Events</option>
      				  <option value="movies">Movies</option>
      				  <option value="discounts">Discounts</option>
      
      				</select>
      			</div>
      		</td>
      		
      	</tr>
      	<tr>
      		<td bgcolor="#a30000" height="17" width="169"><img src="/imgs/common/spacer.gif" height="17" width="169"></td>
      		<td colspan="2" class="a10w" style="padding: 0pt 10px 5px 0pt;" align="right" bgcolor="#a30000" height="17" valign="top" width="591"><a href="/articles/5#search"><u>Help?</u></a></td>
      	</tr>
      
      </tbody></table>
        
      
      <!-- STARTING section/common/menu.php -->
      
      <table align="center" bgcolor="#7881a0" border="0" cellpadding="0" cellspacing="0">
      	<tbody><tr> 
      		<td align="center" background="/imgs/common/set_nbhd_gradient.gif" height="69" valign="top" width="136"> 
      			
      
      <!-- STARTING section/home/set_neighbourhood.php -->
      
      <table topmargin="0" style="overflow-y: hidden;" background="/imgs/common/set_nbhd_gradient.gif" border="0" cellpadding="0" cellspacing="0" height="69" width="135">
      	<tbody><tr>
      		<form name="currneigh" method="post" action=""></form>	
      			<td style="padding: 8px 2px 0pt 5px;" class="a10w" align="left">
      				<div>
      
      					<div class="a10w" style="text-align: left; padding-left: 2px;"><b>YOUR LOCATION</b></div>
      					<div style="clear: both;"></div>
      					<div style="float: left; padding-left: 0px; margin-top: 1px;">
      						<input name="currlocation" id="currlocation" size="14" value="Nampally" style="border-right: 0px none; padding: 0px; height: 17px;" type="text"></div>
      					<div id="caldrop11" style="float: left; margin-top: 1px;"><div style="position: relative; visibility: visible; left: 0pt; top: 0pt;"><div id="menu0item1" style="position: absolute; left: 0px; top: 0px; width: 0px; height: 0px; visibility: inherit;" onmouseover="nothing(0,1)" onmouseout="popOut(0,1)" onclick="popOut(0,1)"><table border="0" cellpadding="0" cellspacing="0" width="-8"><tbody><tr><td align="left" height="0"><a style="display: block;" class="itemText" href="#"></a></td><td class="itemText" align="right"><img id="caldrop" src="/imgs/common/name_drop.gif" style="" align="absTop" border="0" height="18"></td></tr></tbody></table></div></div><div style="position: relative; visibility: hidden;"><div id="menu1item1" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 0px; width: 112px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="itemBorder" onmouseover="nothing(1,1)" onmouseout="popOut(1,1)" onclick="popOut(1,1)"><table border="0" cellpadding="3" cellspacing="0" width="104"><tbody><tr><td align="left" height="14"><font color="#ffffff" size="2">Choose area...</font></td></tr></tbody></table></div><div id="menu1item2" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 21px; width: 112px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="itemBorder" onmouseover="nothing(1,2)" onmouseout="popOut(1,2)" onclick="popOut(1,2)"><table border="0" cellpadding="3" cellspacing="0" width="104"><tbody><tr><td align="left" height="14"><a style="display: block;" class="" href="#"><font color="#ffffff" size="2">A-H</font></a></td><td class="" align="right">&gt;</td></tr></tbody></table></div><div id="menu1item3" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 42px; width: 112px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="itemBorder" onmouseover="nothing(1,3)" onmouseout="popOut(1,3)" onclick="popOut(1,3)"><table border="0" cellpadding="3" cellspacing="0" width="104"><tbody><tr><td align="left" height="14"><a style="display: block;" class="" href="#"><font color="#ffffff" size="2">I-M</font></a></td><td class="" align="right">&gt;</td></tr></tbody></table></div><div id="menu1item4" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 63px; width: 112px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="itemBorder" onmouseover="nothing(1,4)" onmouseout="popOut(1,4)" onclick="popOut(1,4)"><table border="0" cellpadding="3" cellspacing="0" width="104"><tbody><tr><td align="left" height="14"><a style="display: block;" class="" href="#"><font color="#ffffff" size="2">M-Z</font></a></td><td class="" align="right">&gt;</td></tr></tbody></table></div><div id="menu1item5" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 84px; width: 112px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="itemBorder" onmouseover="nothing(1,5)" onmouseout="popOut(1,5)" onclick="popOut(1,5)"><table border="0" cellpadding="3" cellspacing="0" width="104"><tbody><tr><td align="left" height="14"><a style="display: block;" class="" href="/home/section/set_neighbourhood"><font color="#ffffff" size="2">Custom</font></a></td></tr></tbody></table></div></div><div style="position: relative; visibility: hidden;"><div id="menu2item1" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 0px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,1)" onmouseout="popOut(2,1)" onclick="popOut(2,1)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Abids',18,15,19,13);"><font color="#ffffff" size="2"><u>Abids</u></font></a></td></tr></tbody></table></div><div id="menu2item2" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 21px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,2)" onmouseout="popOut(2,2)" onclick="popOut(2,2)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Afzalgunj',21,16,37,9);"><font color="#ffffff" size="2"><u>Afzalgunj</u></font></a></td></tr></tbody></table></div><div id="menu2item3" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 42px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,3)" onmouseout="popOut(2,3)" onclick="popOut(2,3)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Amberpet',18,19,37,35);"><font color="#ffffff" size="2"><u>Amberpet</u></font></a></td></tr></tbody></table></div><div id="menu2item4" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 63px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,4)" onmouseout="popOut(2,4)" onclick="popOut(2,4)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Ameerpet',13,11,38,35);"><font color="#ffffff" size="2"><u>Ameerpet</u></font></a></td></tr></tbody></table></div><div id="menu2item5" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 84px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,5)" onmouseout="popOut(2,5)" onclick="popOut(2,5)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Banjara Hills',15,12,39,10);"><font color="#ffffff" size="2"><u>Banjara Hills</u></font></a></td></tr></tbody></table></div><div id="menu2item6" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 105px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,6)" onmouseout="popOut(2,6)" onclick="popOut(2,6)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Begumpet',11,14,12,8);"><font color="#ffffff" size="2"><u>Begumpet</u></font></a></td></tr></tbody></table></div><div id="menu2item7" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 126px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,7)" onmouseout="popOut(2,7)" onclick="popOut(2,7)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Bowenpally',09,15,16,11);"><font color="#ffffff" size="2"><u>Bowenpally</u></font></a></td></tr></tbody></table></div><div id="menu2item8" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 147px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,8)" onmouseout="popOut(2,8)" onclick="popOut(2,8)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Charminar',22,14,28,14);"><font color="#ffffff" size="2"><u>Charminar</u></font></a></td></tr></tbody></table></div><div id="menu2item9" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 168px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,9)" onmouseout="popOut(2,9)" onclick="popOut(2,9)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Dilsukhnagar',20,21,05,14);"><font color="#ffffff" size="2"><u>Dilsukhnagar</u></font></a></td></tr></tbody></table></div><div id="menu2item10" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 189px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,10)" onmouseout="popOut(2,10)" onclick="popOut(2,10)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Marredpally(E)',11,19,19,1);"><font color="#ffffff" size="2"><u>Marredpally(E)</u></font></a></td></tr></tbody></table></div><div id="menu2item11" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 210px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(2,11)" onmouseout="popOut(2,11)" onclick="popOut(2,11)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Himayatnagar',16,16,30,3);"><font color="#ffffff" size="2"><u>Himayatnagar</u></font></a></td></tr></tbody></table></div></div><div style="position: relative; visibility: hidden;"><div id="menu3item1" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 0px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,1)" onmouseout="popOut(3,1)" onclick="popOut(3,1)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Imliban BS',20,16,35,16);"><font color="#ffffff" size="2"><u>Imliban BS</u></font></a></td></tr></tbody></table></div><div id="menu3item2" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 21px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,2)" onmouseout="popOut(3,2)" onclick="popOut(3,2)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Jubilee BS',11,17,27,34);"><font color="#ffffff" size="2"><u>Jubilee BS</u></font></a></td></tr></tbody></table></div><div id="menu3item3" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 42px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,3)" onmouseout="popOut(3,3)" onclick="popOut(3,3)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Kachiguda',18,17,25,36);"><font color="#ffffff" size="2"><u>Kachiguda</u></font></a></td></tr></tbody></table></div><div id="menu3item4" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 63px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,4)" onmouseout="popOut(3,4)" onclick="popOut(3,4)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Khairatabad',15,13,36,11);"><font color="#ffffff" size="2"><u>Khairatabad</u></font></a></td></tr></tbody></table></div><div id="menu3item5" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 84px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,5)" onmouseout="popOut(3,5)" onclick="popOut(3,5)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Koti',18,16,04,16);"><font color="#ffffff" size="2"><u>Koti</u></font></a></td></tr></tbody></table></div><div id="menu3item6" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 105px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,6)" onmouseout="popOut(3,6)" onclick="popOut(3,6)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Kukatpally',05,06,27,12);"><font color="#ffffff" size="2"><u>Kukatpally</u></font></a></td></tr></tbody></table></div><div id="menu3item7" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 126px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,7)" onmouseout="popOut(3,7)" onclick="popOut(3,7)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Lakdi-ka-Pul',16,13,09,31);"><font color="#ffffff" size="2"><u>Lakdi-ka-Pul</u></font></a></td></tr></tbody></table></div><div id="menu3item8" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 147px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,8)" onmouseout="popOut(3,8)" onclick="popOut(3,8)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Langer House',19,08,05,31);"><font color="#ffffff" size="2"><u>Langer House</u></font></a></td></tr></tbody></table></div><div id="menu3item9" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 168px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,9)" onmouseout="popOut(3,9)" onclick="popOut(3,9)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Madhapur',12,04,39,23);"><font color="#ffffff" size="2"><u>Madhapur</u></font></a></td></tr></tbody></table></div><div id="menu3item10" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 189px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,10)" onmouseout="popOut(3,10)" onclick="popOut(3,10)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Malakpet',20,19,07,22);"><font color="#ffffff" size="2"><u>Malakpet</u></font></a></td></tr></tbody></table></div><div id="menu3item11" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 210px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(3,11)" onmouseout="popOut(3,11)" onclick="popOut(3,11)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Malkajgiri',11,22,28,18);"><font color="#ffffff" size="2"><u>Malkajgiri</u></font></a></td></tr></tbody></table></div></div><div style="position: relative; visibility: hidden;"><div id="menu4item1" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 0px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,1)" onmouseout="popOut(4,1)" onclick="popOut(4,1)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Mehdipatnam',17,11,32,27);"><font color="#ffffff" size="2"><u>Mehdipatnam</u></font></a></td></tr></tbody></table></div><div id="menu4item2" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 21px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,2)" onmouseout="popOut(4,2)" onclick="popOut(4,2)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Nampally',17,14,03,12);"><font color="#ffffff" size="2"><u>Nampally</u></font></a></td></tr></tbody></table></div><div id="menu4item3" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 42px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,3)" onmouseout="popOut(4,3)" onclick="popOut(4,3)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Osmania',16,20,18,4);"><font color="#ffffff" size="2"><u>Osmania</u></font></a></td></tr></tbody></table></div><div id="menu4item4" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 63px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,4)" onmouseout="popOut(4,4)" onclick="popOut(4,4)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Panjagutta',13,12,06,27);"><font color="#ffffff" size="2"><u>Panjagutta</u></font></a></td></tr></tbody></table></div><div id="menu4item5" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 84px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,5)" onmouseout="popOut(4,5)" onclick="popOut(4,5)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Ramanthapur',17,21,18,17);"><font color="#ffffff" size="2"><u>Ramanthapur</u></font></a></td></tr></tbody></table></div><div id="menu4item6" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 105px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,6)" onmouseout="popOut(4,6)" onclick="popOut(4,6)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Ranigunj',13,16,07,18);"><font color="#ffffff" size="2"><u>Ranigunj</u></font></a></td></tr></tbody></table></div><div id="menu4item7" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 126px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,7)" onmouseout="popOut(4,7)" onclick="popOut(4,7)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Sanathnagar',10,12,34,17);"><font color="#ffffff" size="2"><u>Sanathnagar</u></font></a></td></tr></tbody></table></div><div id="menu4item8" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 147px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,8)" onmouseout="popOut(4,8)" onclick="popOut(4,8)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Santosh Nagar',23,18,24,18);"><font color="#ffffff" size="2"><u>Santosh Nagar</u></font></a></td></tr></tbody></table></div><div id="menu4item9" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 168px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,9)" onmouseout="popOut(4,9)" onclick="popOut(4,9)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Secunderabad',13,18,34,10);"><font color="#ffffff" size="2"><u>Secunderabad</u></font></a></td></tr></tbody></table></div><div id="menu4item10" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 189px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,10)" onmouseout="popOut(4,10)" onclick="popOut(4,10)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Trimulgherry',09,18,39,36);"><font color="#ffffff" size="2"><u>Trimulgherry</u></font></a></td></tr></tbody></table></div><div id="menu4item11" style="background: rgb(163, 4, 4) none repeat scroll 0%; position: absolute; left: 0px; top: 210px; width: 100px; height: 21px; visibility: inherit; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" class="crazyBorder" onmouseover="nothing(4,11)" onmouseout="popOut(4,11)" onclick="popOut(4,11)"><table border="0" cellpadding="3" cellspacing="0" width="92"><tbody><tr><td align="left" height="14"><a style="display: block;" class="crazyText" href="javascript:setneighbourhood('Vanasthalipuram',25,26,22,26);"><font color="#ffffff" size="2"><u>Vanasthalipuram</u></font></a></td></tr></tbody></table></div></div></div>
      
      					<div style="clear: both;"></div>
      					<div style="padding-left: 3px;"><a href="/articles/5#distances"><u><b>what is this?</b></u></a></div>
      				</div>
      			</td>
      		
      	</tr>
      </tbody></table>
      <script language="Javascript">
      var defOver = '#000000', defBack = '#A30404';
      var offset = 0+132;
      	yval=24+offset;		// 20 units is the distance inside the setnbh block.
      menu[0][0] = new Menu(false, '<img id=caldrop height=18 src="/imgs/common/name_drop.gif" align="absTop" border="0" height="16" style="padding-top:-2px;">', xval, yval, 0, '', '', '', 'itemText');
      menu[1][0] = new Menu(true, '>', -82, 18, menuwidth, defOver, defBack, 'itemBorder', '');
      for (var i=2;i<5;i++)
      {
      	menu[1][i] = new Item(fcolor+alpha_range[i-2]+'</font>', '#', '', defLength, 0, i);
      }
      menu[1][5] = new Item('<font color="#FFFFFF" size="2">Custom</font>', '/home/section/set_neighbourhood', '', defLength, 0, 0);for (var i=2;i<5;i++)
      {
      	menu[i] = new Array();
      	menu[i][0] = new Menu(true, '>', menuwidth, 0, 100, defOver, defBack, 'crazyBorder', 'crazyText');
      	for (var j=0;j<area_list[i].length;j++)
      	{
      		menu[i][j+1] = new Item(fcolor+'<u>'+area_list[i][j]+'</u></font>', 'javascript:setneighbourhood(\''+area_list[i][j]+'\','+area_coords[i][j].substr(0,2)+','+area_coords[i][j].substr(2,2)+','+area_coords[i][j].substr(4,2)+','+area_coords[i][j].substr(6,2)+');', '', defLength, 0, 0);
      
      	}
      }
      </script>
      		</td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      
      		<td style="padding: 0pt 2px 0pt 5px;" class="v9w" valign="middle" width="98">
      			<div style="width: 98px;" class="v9y"><b>DINING AND ENTERTAINMENT</b></div>
      			<a href="/home/section/events" title="Events in Hyderabad"><b>Events</b></a><br>
      			<a href="/home/section/movies" title="Movies in Hyderabad"><b>Movies</b></a><br>
      			<a href="/home/section/restaurants" title="Restaurants/Pubs/Bars/Nightlife in Hyderabad"><b>Restaurants/Pubs</b></a></td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle" width="88">
      
      			<div style="width: 88px;" class="v9y"><b>SHOPPING AND DISCOUNTS</b></div>
      			<a href="/home/section/shopping" title="Shopping in Hyderabad"><b>Shopping</b></a><br>
      			<a href="/home/section/discounts" title="Discounts/sales in Hyderabad"><b>Sales</b></a><br>
      			<a href="/home/section/yellowpages" title="Hyderabad yellow pages"><b>Yellow Pages</b></a></td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle" width="73">
      			<div style="width: 73px;">
      
      			<span class="v9y"><b>HOTELS AND VISITING</b></span><br>
      			<a href="/home/section/hotels" title="Hotels in Hyderabad"><b>Hotels</b></a><br>
      			<a href="/search/?type=locations&amp;cat=Attractions" title="Tourist attractions in Hyderabad"><b>Attractions</b></a><br>
      			<a href="/roundups/38" title="Top tourist attractions in Hyderabad"><b>Top Spots</b></a></div></td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle" width="95">
      			<div style="width: 95px;">
      
      			<a href="/classifieds/" title="Hyderabad classifieds"><span class="v9y"><b>CLASSIFIEDS</b></span></a><br>
      			<a href="/classifieds/index.php?catid=14102" title="Plots, houses, apartments - Hyderabad real estate classifieds"><b>Real Estate</b></a><br>
      			<a href="/classifieds/index.php?catid=14011" title="Hyderabad business related classifieds"><b>Business Related</b></a><br>
      			<a href="/classifieds/index.php?catid=14001" title="Hyderabad automobile classifieds (cars, bikes, loans)"><b>Auto</b></a> | <a href="/classifieds/index.php?catid=14064" title="Jobs/vacancies in Hyderabad"><b>Vacancies</b></a><br>
      			<a href="/classifieds/" title="More Hyderabad classifieds categories like education, electronic, astrology, personal services etc."><b>More</b></a></div></td>
      
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle">
      			<div style="width: 75px;">
      			<a href="/myspace/"><span class="v9y"><b>MY FULLHYD</b></span></a><br>
      			<a href="/myspace/profile"><b>Profile</b></a><br>
      			<a href="/myspace/privacy"><b>Privacy</b></a><br>
      			<a href="/home/section/user/?action=forgot" title="Forgot your password?"><b>Password</b></a><br>
      
      			<a href="/myspace/"><b>More</b></a></div></td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle" width="74">
      			<div style="width: 74px;">
      			<a href="/home/section/careers/" title="Jobs/Careers in Hyderabad"><span class="v9y"><b>CAREERS</b></span></a><br>
      			<a href="/home/section/careers/?search" title="Search for jobs in Hyderabad"><b>Search Jobs</b></a><br>
      			<a href="/home/section/careers/?post_resume" title="Post your résumé"><b>Post Résumé</b></a><br>
      
      			<a href="/home/section/careers/?post_job" title="Post a job"><b>Post A Job</b></a><br>
      			<a href="/home/section/careers/?get_tips" title="Get advice"><b>Get Advice</b></a></div></td>
      		<td class="spacer" bgcolor="#000000" width="1"></td>
      		<td style="padding: 0pt 0pt 0pt 5px;" class="v9w" valign="middle">
      			<div style="width: 77px;">
      			<a href="/home/section/community/" title="Hyderabad's largest community!"><span class="v9y"><b>COMMUNITY!</b></span></a><br>
      			<a href="/blogs/" title="Hyderabad's premier blogging community"><b>Blogs</b></a><br>
      
      			<a href="/discussions/" title="Hyderabad's largest discussion forums"><b>Discussions</b></a><br>
      			<a href="/home/section/personals/" title="Hyderabad Singles, Dating and Personals Hub"><b>Personals</b></a><br>
      			<a href="/home/section/chat/"><b>Chat</b></a><br>
      			</div></td>
      
      	</tr>
      </tbody></table><table align="center" border="0" cellpadding="0" cellspacing="0" width="760"><tbody><tr valign="top"><td colspan="3" style="padding: 3px 0pt 5px 5px;" bgcolor="#000000"><div style="float: left;"><a href="/index.php"><span class="a12w"><u>Home</u></span></a> | <a href="/index.php/section/movies/index.php"><span class="a12w"><u>Movies</u></span></a> | <span class="a12w"><b>Neninthe</b></span> </div><div style="float: right; padding-right: 170px; padding-top: 3px;"><a href="/home/section/user/?action=logout&amp;redirect_url=/profile/movies/2663/2/"><span class="a12w"><u>Logout</u></span></a></div></td></tr><tr><td valign="top"><div>
      
      <!-- STARTING profiles/common/sponsor_results.php -->
      
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="7" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td class="v12r" style="padding: 12px 0pt 3px 14px;"><b>Sponsored Results</b></td>
      	</tr>
          <tr> 
      		<td bgcolor="#cccccc"><img src="/imgs/common/spacer.gif" height="1" width="595"></td>
      	</tr>
      
      	<tr> 
      		<td><img src="/imgs/common/spacer.gif" height="5" width="595"></td>
      	</tr>
      	<tr>
      		<td style="padding: 7px 14px 0pt;">
      			<div style="float: left; padding-right: 3px;">
      				<img src="/imgs/sponsors/sponsor_01.gif"></div>
      			<div class="v10g">
      				<b>Planning to shift jobs?</b></div>
      
      			<div class="v12bl_1" style="padding: 3px 0pt 5px;"><a href="/home/section/careers"><b><u>Jobs in Hyderabad</u></b></a></div>
      			<div class="v10g">For thousands of jobs in Hyderabad and elsewhere, click above!</div>
      		</td>
      	</tr>
          <tr> 
      		<td height="12"><img src="/imgs/common/spacer.gif" height="12" width="582"></td>
          </tr>
      </tbody></table>
      
      <!-- STARTING profiles/movies/summary.php -->
      
      <!-- <script type="text/javascript">
      
      function sendEmail(flag) {
      
      var url = 'http://www.newfullhyd.com'+'/blocks/profiles/common/email_link.php';
      var cat = document.getElementById("cat").value;
      var id = document.getElementById("id").value;
      var subject = document.getElementById("subject").value;
      var name = document.getElementById("name").value;
      var email = document.getElementById("email").value;
      
      var params = '';
      if(cat != '')params += "cat="+cat+"&";
      if(id != '')params += "id="+id+"&";
      if(subject != '')params += "subject="+subject+"&";
      if(name != '' && flag == 'true')params += "name="+name+"&";
      if(email != '' && flag == 'true')params += "email="+email+"&";
      url += "?"+params;
      popUp(url);
      }
      
      </script> 
      <input type="hidden" id="cat" name="cat" value="Movies">
      <input type="hidden" id="id" name="id" value="2663">
      <input type="hidden" id="subject" name="subject" value="Neninthe">
      <input type="hidden" id="name" name="name" value="Santosh (Abids)">
      <input type="hidden" id="email" name="email" value=""> -->
      <table bgcolor="#d2d2d2" border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="1000" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td class="v18r" style="padding: 12px 0pt 3px 14px;"><b>Neninthe</b></td>
      	</tr>
      	<tr>
      		<td style="padding: 3px 14px 0pt;" width="596">
      
      						<div style="padding: 3px 8px 0pt 0pt; float: left;">
      				<img src="/images/reviews/arts_entt/movies/telugu/neninthe.jpg" alt="Neninthe" style="border: 0pt solid rgb(0, 0, 0);">
      					<span class="v9r">
      					</span>				
      			</div>
      						<div>
      				<span class="a11b">
      					
      					Closest Theater:<br>
      					<a href="/profile/locations/231"><u><b>Santosh (Abids)</b></u></a> (0.9 km)					<br>
      
      					5-8-544, Beside Godrej Showroom, Abids, Hyderabad • Telephone: 2320-1991										<div style="padding-top: 8px;">
      						Showtimes for Sun, 21st Dec:<br>
      						<b>
      					11:00am, 2:00pm, 6:00pm, 9:00pm						</b>
      					</div>
      					<div style="padding: 8px 0pt 0pt;">
      						<a href="/profile/movies/2663/3#tabs">
      
      							<u>All theaters &amp; showtimes</u>
      						</a>
      					</div>
      										<div style="padding: 12px 0pt 0pt;">
      						<img src="/imgs/profiles/Map.gif" style="vertical-align: middle;" border="0"> <span class="v10b"><a href="/profile/locations/231/4"><b>Map</b></a></span>
      						<span style="padding-right: 25px;"></span>
      
      											</div>
      													<!--ADDED BY BALU-->
      					<div id="2663save" style="padding: 10px 0pt 0pt; margin-left: 0px;">
      
      
      						<a href="javascript:savesubmit('form2663','results2663','35','movies','231')" target="_top"><u>Save</u></a> •
      						<a href="javascript:window.print()" ;=""><u>Print</u></a> • <a href="javascript:popUp('http://www.newfullhyd.com/blocks/profiles/common/email_link.php?type=movies&id=2663&name=Neninthe&tab=2', '2663')"><u>Email This Link</u></a> • <a href="/home/section/personals/"><u>Find A Date</u></a> • <a href="/articles/5"><u>Help</u></a>
      
      						<div style="clear: both;"></div>
      					</div>
      
      					<form name="deleteform2663" style="margin: 0px; padding: 0px;">
      						<input name="eventid" value="2663" type="hidden">
      						<input name="edittype" value="delete" type="hidden">
      					</form>
      					<form name="form2663" style="margin: 0px; padding: 0px;">
      						<input name="eventid" value="2663" type="hidden">
      
      						<input name="edittype" value="update" type="hidden">
      					</form>
      				</span>
      				<div style="clear: both;"></div>
      				<div id="results2663" class="a10b"></div>
      			</div>
      		</td>
      	</tr>
      	<tr>
      
      		<td>&nbsp;</td>
      	</tr>
      </tbody></table>
      
      <!-- STARTING profiles/movies/tabs.php -->
      
      <a name="tabs">
      		</a><table id="tabs_table" class="a12w a12w_t" border="0" cellpadding="0" cellspacing="0">
      	<tbody><tr>
      		<td id="overview_tab_strip" align="center" bgcolor="#000000" height="21" width="75"><a href="/profile/movies/2663/0#tabs"><b>Overview</b></a></td>
              <td id="user_rating_tab_strip" align="center" bgcolor="#636363" height="21" width="105"><a href="/profile/movies/2663/1#tabs"><b>User Ratings</b></a></td>
      
      		        <td id="editorial_tab_strip" align="center" bgcolor="#a30000" height="21" width="119"><a href="/profile/movies/2663/2#tabs"><b>Editorial Review</b></a></td>
      				<td id="showtimes_tab_strip" align="center" bgcolor="#9d9d9d" height="21" width="86"><a href="/profile/movies/2663/3#tabs"><b>Showtimes</b></a></td>
      		        <!-- <TD WIDTH="141" HEIGHT="21" BGCOLOR="B0B0B0" align="center"><a href="/profile/movies/2663/4">Maps and Directions</a></TD> -->
      		<td bgcolor="#d2d2d2" height="21" width="211">
      			<img src="/imgs/common/spacer.gif" height="21" width="70"></td>
      	</tr>
      	<tr>
      		<td colspan="6" bgcolor="#a30000" height="5" width="596">
      
      			<img src="/imgs/common/spacer.gif" height="5" width="596"></td>
      	</tr>
      </tbody></table>
      <div id="rating_main_block"><!-- CLOSES IN blocks/profiles/common/footer.php -->
      
      <!-- STARTING profiles/common/ratingmain.php -->
      
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="20" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td width="595">
      			<table border="0" width="100%">
      
      				<tbody><tr>
      					<td colspan="3"><img src="/imgs/common/spacer.gif" height="8"></td>
      				</tr>
      				<tr>
      					<td class="v11bl" style="padding: 0pt 5px;" align="center" width="70">
      						<div>
      						<img src="/imgs/common/rating_4_0.gif"></div>
      						<div style="padding-right: 1px;">[<span class="a11bl"><b>Editorial</b></span>]</div>
      
      						<!-- THE DIV WAS TO CENTER-ALIGN THIS -->
      											</td>
      					<td class="a11bl" valign="middle">
      						<table border="0" cellpadding="0" cellspacing="0">
      							<tbody><tr>
      								<td>
      									<div class="v10bl" style="float: left;">
      
      										<div style="padding: 0pt 10px 0pt 0pt; float: left;">
      
      											<div><b>Performances</b></div>
      											<div style="padding: 7px 0pt 0pt;"><b>Script</b></div>
      											<div style="padding: 7px 0pt 0pt;"><b>Music/Soundtrack</b></div>
      											<div style="padding: 7px 0pt 0pt;"><b>Visuals</b></div>
      										</div>
      										<div style="float: left;">
      											<div><img src="/imgs/common/Rate_card_08.gif"> &nbsp;&nbsp;<b>8.0</b></div>
      
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_04.gif"> &nbsp;&nbsp;<b>4.0</b></div>
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_05.gif"> &nbsp;&nbsp;<b>5.0</b></div>
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_08.gif"> &nbsp;&nbsp;<b>8.0</b></div>
      										</div>
      									</div> 
      								</td>
      
      								<td align="center" valign="middle">
      									<div style="padding: 3px 0pt 0pt 18px; float: left;">
      										<a href="javascript:loginbox('http://www.newfullhyd.com/blocks/profiles/common/user_rating.php', 'movies', '2663', 'loginbox', '', '2');">
      											<div><img src="/imgs/common/rate_it_button.gif" border="0"></div></a>
      										<div class="a10bl"><a href="/feature/38972?cslink=cs_profile_about_our_rating#ratings_calc"><u>About Ratings</u></a></div>
      									</div>
      								</td>
      							</tr>
      
      						</tbody></table>
       					</td>
      					<td class="a10bl" style="padding-right: 5px;" valign="top" width="128">
      						<div style="float: right;">
      							<div class="v9r">
      <b>Editorial Suggestions</b>							</div>
      							<b>
      							<div style="padding-top: 0pt;">Can watch again - <span class="v10bl"><b>No</b></span></div>
      
      							<div>Good for kids - <span class="v10bl"><b>No</b></span></div>
      							<div>Good for dates - <span class="v10bl"><b>No</b></span></div>
      							<div>Wait to rent it - <span class="v10bl"><b>Yes</b></span></div>
      							</b>
      						</div>
      					</td>
      
      				</tr>
      				<tr>
      					<td colspan="4"><img src="/imgs/common/spacer.gif" height="30"></td>
      				</tr>
      			</tbody></table>
      		</td>
      	</tr>
      </tbody></table>
      <div style="display: block;" id="loginbox"><form method="post" name="ratingform" style="margin: 0px; padding: 0px;">
      	<input name="which" value="movies" type="hidden">
      
      	<input name="row_name" value="Neninthe" type="hidden">
      	<input name="profile" value="2663" type="hidden">
      	<input name="tab" value="2" type="hidden">	<table border="0" cellpadding="0" cellspacing="0" width="596">
      		<tbody><tr>
      			<td rowspan="1000" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      			<td colspan="30" width="595">
      	<script language="JavaScript" type="text/javascript"></script>
      
      <br><table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="595">
       	<tbody><tr>
      		<td colspan="30" style="padding: 0pt 0pt 6px 10px;" width="595">
      			<div class="v12r" style="float: left;"><b>Add Your Own Comments</b> <span class="v9r">(everything here is optional)</span></div>
      						<div class="v9r" style="padding: 5px 10px 0pt 0pt; float: right;"><a href="#" onclick="document.getElementById('loginbox').style.display='none'; return false;"><u>Close</u></a></div>
      					</td>
      	</tr>
      
      	<tr>
      		<td colspan="30" bgcolor="#b0b0b0" height="1" width="595"><img src="/imgs/common/spacer.gif" height="1" width="595"></td>
      	</tr>
      	<tr>
      		<td colspan="30" width="595"><img src="/imgs/common/spacer.gif" height="15"></td>
      	</tr>
      	<tr> 
      		<td style="padding-top: 20px;" background="/imgs/common/blue_box_top.gif" height="49" width="595"></td>
      		<!-- THAT BACKGROUND FUNDA ABOVE IS FOR FIREFOX -->
      
      	</tr>
       	<tr> 
      		<td class="a11w" style="padding: 0pt 0pt 0pt 140px;" align="left" background="/imgs/common/blue-_box_repeatfill.gif" valign="top" width="595">
      			<b>Let over 1,500,000 Hyderabadis benefit from your opinion! Add your own review here:</b>
                  <br><br>
                  
      			<textarea cols="45" rows="5" name="text"></textarea>
      		</td>
      	</tr>
      
      	<tr> 
      		<td background="/imgs/common/blue_box_bottom.gif" height="38" width="595"></td>
      	</tr>
      	<tr> 
      		<td width="595"><img src="/imgs/common/spacer.gif" height="31" width="595"></td>
      	</tr>
      	<tr>
      		<td width="595">
      			<table border="0" cellpadding="0" cellspacing="0">
      				<tbody><tr>
      
      					<td width="177"><img src="/imgs/common/yellow_box_fill.gif"></td>
      					<td class="v9b" background="/imgs/common/yellow_box_fill.gif" width="205"><b>What are the key things that stand out?</b></td>
      					<td width="15"><img src="/imgs/common/yellow_box_end.gif"></td>
      					<td width="198"><img src="/imgs/common/spacer.gif" height="17" width="198"></td>
      				</tr>
      			</tbody></table>
      		</td>
      	</tr>
      
       	<tr>
      		<td style="padding-top: 12px;" width="595">
      			<table border="0" cellpadding="0" cellspacing="0">
      				<tbody><tr>
      					<td class="v10bl" style="padding-left: 65px;" width="102"><b>Pros</b></td>
      					<td align="center" width="143">
      						<input name="pro_1" value="" size="18" type="text"></td>
      					<td width="282"> <img src="/imgs/common/spacer.gif" height="35" width="282"></td>
      
      				</tr>
       				<tr> 
      					<td class="v10bl" style="padding-left: 65px;" width="102"><b>Cons</b></td>
      					<td align="center" width="143">
      						<input name="con_1" value="" size="18" type="text"></td>
      					<td width="282"> <img src="/imgs/common/spacer.gif" height="22" width="282"></td>
      				</tr>
      			</tbody></table>
      
      		</td>
      	</tr>
      	<tr>
      		<td style="padding-top: 22px;" width="595">
      			<table border="0" cellpadding="0" cellspacing="0">
      				<tbody><tr>
      					<td width="177"><img src="/imgs/common/yellow_box_fill.gif"></td>
      					<td class="v10bl" background="/imgs/common/yellow_box_fill.gif" width="186"><b>How would you recommend this?</b></td>
      
      					<td width="15"><img src="/imgs/common/yellow_box_end.gif"></td>
      					<td width="217"><img src="/imgs/common/spacer.gif" height="17" width="217"></td>
      				</tr>
      			</tbody></table>
      		</td>
      	</tr>
      	<tr>
      		<td style="padding-top: 15px;" width="595">
      			<table border="0" cellpadding="0" cellspacing="0" width="100%">
      
      				<tbody><tr>
      					<td width="167"><img src="/imgs/common/spacer.gif" height="18" width="110"></td>
      					<td class="v10bl" align="center" width="46"><b>Yes</b></td>
      					<td class="v10bl" align="center" width="29"><b>No</b></td>
      					<td class="v10bl" align="center" width="43"><b>Unsure</b></td>
      					<td rowspan="6"><img src="/imgs/common/spacer.gif" height="18" width="310"></td>
      				</tr>
      
      				
      				<tr> 
      					<td class="v10bl" style="padding-left: 65px;" height="19"><b>Can watch again</b></td>
      					<td align="center">
      						<input name="recommend1" value="Yes" type="radio"></td>
      					<td align="center">
      						<input name="recommend1" value="No" type="radio"></td>
      					<td align="center">
      						<input name="recommend1" value="Unsure" type="radio"></td>
      				</tr>
      
      								<tr> 
      					<td class="v10bl" style="padding-left: 65px;" height="19"><b>Good for kids</b></td>
      					<td align="center">
      						<input name="recommend2" value="Yes" type="radio"></td>
      					<td align="center">
      						<input name="recommend2" value="No" type="radio"></td>
      					<td align="center">
      						<input name="recommend2" value="Unsure" type="radio"></td>
      				</tr>
      
      								<tr> 
      					<td class="v10bl" style="padding-left: 65px;" height="19"><b>Good for dates</b></td>
      					<td align="center">
      					<input name="recommend3" value="Yes" type="radio"></td>
      					<td align="center">
      					<input name="recommend3" value="No" type="radio"></td>
      					<td align="center">
      					<input name="recommend3" value="Unsure" type="radio"></td>
      				</tr>
      
      								<tr> 
      					<td class="v10bl" style="padding-left: 65px;" height="19"><b>Wait to rent it</b></td>
      					<td align="center">
      						<input name="recommend4" value="Yes" type="radio"></td>
      					<td align="center">
      						<input name="recommend4" value="No" type="radio"></td>
      					<td align="center">
      						<input name="recommend4" value="Unsure" type="radio"></td>
      				</tr>
      
      							</tbody></table>
      		</td>
      	</tr>
      	<tr>
      		<td style="padding-top: 22px;" width="595">
      			<table border="0" cellpadding="0" cellspacing="0">
      				<tbody><tr>
      					<td width="177"><img src="/imgs/common/yellow_box_fill.gif"></td>
      					<td class="v9b" background="/imgs/common/yellow_box_fill.gif" width="180"><b>Your personal settings for this post</b></td>
      
      					<td width="15"><img src="/imgs/common/yellow_box_end.gif"></td>
      					<td width="223"><img src="/imgs/common/spacer.gif" height="17" width="223"></td>
      				</tr>
      			</tbody></table>
      		</td>
      	</tr>
       	<tr>
      		<td style="padding-top: 12px;" width="595">
      			<table border="0" cellpadding="0" cellspacing="0">
      
      				<tbody><tr>
      					<td class="v10bl" style="padding-left: 65px;" width="102"><b>My name</b></td>
      					<td colspan="2" style="padding-left: 10px;" align="left" width="425">
      						<input name="name_for_display" value="Kishore Kadiyala" size="25" type="text"></td>
      				</tr>
      				<tr>
      					<td class="v10bl" style="padding: 5px 0pt 0pt 65px;" width="102"><b>Identity hidden?</b></td>
      					<td colspan="2" style="padding: 5px 0pt 0pt 6px;" align="left" width="425">
      
      						<input name="post_anonymous" type="checkbox"> <span class="v10bl">[no link to your name will appear, overriding <a href="/myspace/settings" target="_blank"><u>global settings</u></a>]</span></td>
      				</tr>	
      			</tbody></table>
      		</td>
      	</tr>
      	<tr> 
      		<td align="center" width="595">
      			<br>
      
      			<input name="stage" value="2" type="hidden">
      			<input value="Reset" type="reset">&nbsp;&nbsp;&nbsp;&nbsp;
      			<input name="submit_rating_done" value="Submit" onclick='return morerating("ratingform", false, "rating_main_block_editorial"); return false;' type="submit">
      					</td>
      	</tr>
      	<tr> 
      		<td style="padding: 20px 0pt 50px;" height="38" width="595"><img src="/imgs/common/blue_box_bottom.gif" height="38" width="595"></td>
      	</tr>
      </tbody></table>
      <script></script>
      
      <script></script>
      			</td>
      		</tr>
      	</tbody></table>
      	</form>
      	<script></script></div>
      
      
      <!-- STARTING profiles/common/editorial.php -->
      
      <table border="0" cellpadding="0" cellspacing="0" width="596">
          <tbody><tr>
      		<td rowspan="1000" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td class="v12r" style="padding: 0pt 0pt 6px 10px;" width="159"><b>Editorial Review</b><br></td>
      		<td class="v9r" style="padding-right: 6px;" align="right" width="436">
      			&nbsp;
      		</td>
      	</tr>
      	<tr>
      
      		<td colspan="30" bgcolor="#b0b0b0" height="1" width="595"><img src="/imgs/common/spacer.gif" height="1" width="595"></td>
      	</tr>
      	<tr>
      		<td colspan="30" width="595"><img src="/imgs/common/spacer.gif" height="15"></td>
      	</tr>
          <tr> 
      		<td class="v11bl" colspan="2" style="padding: 0pt 10px 20px;" valign="top">
      			<div class="a_underline">Neninthe is perhaps the film with the maximum number of scenes of men being beaten brutally on their testicles in Tollywood. It is also the first time in Tollywood (at least as far as this writer knows) that the "<i>nee ammani d****</i>" abuse is used in a movie, thus bravely crossing the final frontier. And the heroine has her hand resting practically on Ravi Teja's crotch in a scene shown in 3 zoom-outs.<br>
      
      <br>
      This is the movie that Puri Jagannath uses to preach to the rest of the world about the Telugu film industry's virtues, and the great Satans it encounters in its quest for survival. Don't you just love him?<br>
      <br>
      Neninthe is a typical Puri Jagannath product, but with a message - that it's okay to live in a glasshouse and throw boulders around, some of them even landing on King Kong. The ostensible tale of a wannabe director, this one has several full-grown grouses in its crosshairs against just about everything related to Tollywood, and a gleeful enthusiasm in the ranting. To the outer world, Jagannath emerges moral champion - within the industry, he'll probably have much fewer friends on a rainy day.<br>
      <br>
      Ravi (Ravi Teja) is an assistant director doing time under Idli Vishwanath (Brahmanandam), an established director with an ego untouched by his worth. Struggling to get a break as a director for his own script, he makes a powerful enemy in Yadu (Supreet Reddy), a local goon, while trying to protect Sandhya (Seiya), a junior artiste/dancer. The film traces the contours of the Telugu film industry while showcasing his struggle for success, and provides more than a silhouette.<br>
      <br>
      Some of Neninthe is vicious mimicking of ego statements and idiosyncrasies of industry bigwigs that will result in plenty of nudging and winking among an insider crowd, but most of it has to do with fan clubs, fudged collection figures, websites focused on Tollywood, and reviewers. Jagannath presents a larger-than-life picture of rabid fans who stake their personal reputation on the box-office fate of their hero's latest film - a problem peculiar to Tollywood, with any number of online forums spewing vitriol, many times on casteist (sic) lines, bearing testimony to that - and even go bankrupt to ensure collections and thus their standing relative to fans of rival heroes.<br>
      <br>
      Fudged collections, a well-known Tollywood reality, get their focus, too, but Jagannath reserves his carping best for websites and reviewers. It's easy to make out which specific ones he's referring to if you are clued in (hint: there's one which churns out a lot of salacious gossip, and another that claims to influence overseas collections with its ratings).<br>
      <br>
      For those who want to know, Jagannath feels you should decide whether you should watch a movie based on its songs, posters and trailers - you should <i>not</i> read reviews, since reviewers who point out flaws in movies have never made a movie. This logic can undoubtedly be extended to asking your friends or colleagues for movie recommendations, too. They have never made a movie either, remember? What's the difference between them and a reviewer?<br>
      
      <br>
      Also, you should never ask friends or consult a magazine on which car to buy, since they've never actually made a car.<br>
      <br>
      Jagannath's contention is also that crores go into making a movie, and it's your duty to pay your $8 or Rs. 100 or whatever without reading reviews first, to ensure that they get their money back, since they are doing all this for love of movie-making rather than money. No, the movie actually says this.<br>
      <br>
      Our small detour aside, should you watch Neninthe? Well, it has gore, from the man who single-handedly gave it a new lease of life with <a href="/profile/movies/1263/2">Pokiri</a> - and, like we said, it hits a new low this time. It has atrociously vulgar language including the "l****k*****" and the "d***a" words. It has all the skin show you expect from a Puri Jagan movie including an item song by Mumaith.<br>
      <br>
      Jagannath thus does it once again: try a mix and match of the ingredients he knows - gore, skin, rousing lines and comedy - and hope to get a hit. Indeed, he talks of how movie-making is like playing carroms - you put all coins in the middle and hit at it, and hope that some of them go into the holes (as in, you put all elements, and hope some work). Sad metaphor, but to use it anyway, you also need to be a good carrom player - there are people who always put 4 coins in the 4 holes in their first strike.<br>
      <br>
      Also, <a href="http://en.wikipedia.org/wiki/Sekhar_Kammula" target="_blank">there are men</a> who don't play carroms at all, and have had 3 consecutive (and counting) commercial hits that were also critically acclaimed and awarded. And with the exception of <a href="/profile/movies/2588/2">Avakai Biriyani</a>, every low-budget offbeat film this year has been a hit (<a href="/profile/movies/2459/2">Ashta Chemma</a>, <a href="/profile/movies/12/2">Gamyam</a>, <a href="/profile/movies/2533/2">Kotha Bangaru Lokam</a> and <a href="/profile/movies/2607/2">Vinayakudu</a>).<br>
      
      <br>
      Jagannath is undoubtedly good, and if he stopped outsourcing the reason for flops to reviews and took responsibility himself, he would make even better movies. We await that. As for reviewers, lots of people think fullhyd gets it right each time. We don't play carroms, we just try to be good at whatever we do.</div>		</td>
      	</tr>
      </tbody></table>
      <!-- <DIV ID='editorial_loginbox'></DIV> -->
      
      <!-- STARTING profiles/common/bottom_tab.php -->
      
      <a name="tabs">
      		</a><table id="bottom_tab" class="a12w a12w_t" border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="1000" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      
      		<td colspan="4" bgcolor="#ffffff" height="30" width="595">
      			<img src="/imgs/common/spacer.gif" height="30" width="595"></td>
      	</tr>
      	<tr>
      		<td align="center" bgcolor="#a30000" height="21" width="115">
      			<b>User Comments</b></td>
      		<td height="21" width="480">
      			<img src="/imgs/common/spacer.gif" height="21" width="480"></td>
      
      	</tr>
      	<tr>
      		<td colspan="4" bgcolor="#a30000" height="5" width="595">
      			<img src="/imgs/common/spacer.gif" height="5" width="595"></td>
      	</tr>
      </tbody></table>
      <div style="border-color: rgb(0, 0, 0); border-left: 1px solid rgb(0, 0, 0); padding-top: 5px;"></div>
      <div id="rating_main_block_editorial">
      
      <!-- STARTING profiles/common/ratingmain.php -->
      
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      
      	<tbody><tr>
      		<td rowspan="20" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td width="595">
      			<table border="0" width="100%">
      				<tbody><tr>
      					<td colspan="3"><img src="/imgs/common/spacer.gif" height="8"></td>
      				</tr>
      				<tr>
      					<td class="v11bl" style="padding: 0pt 5px;" align="center" width="70">
      
      						<div>
      						<img src="/imgs/common/rating_5_0.gif"></div>
      						<div style="padding-right: 1px;">[<b>3</b> <span class="a11bl">users</span>]</div>
      						<!-- THE DIV WAS TO CENTER-ALIGN THIS -->
      											</td>
      					<td class="a11bl" valign="middle">
      
      						<table border="0" cellpadding="0" cellspacing="0">
      							<tbody><tr>
      								<td>
      									<div class="v10bl" style="float: left;">
      
      										<div style="padding: 0pt 10px 0pt 0pt; float: left;">
      											<div><b>Performances</b></div>
      											<div style="padding: 7px 0pt 0pt;"><b>Script</b></div>
      
      											<div style="padding: 7px 0pt 0pt;"><b>Music/Soundtrack</b></div>
      											<div style="padding: 7px 0pt 0pt;"><b>Visuals</b></div>
      										</div>
      										<div style="float: left;">
      											<div><img src="/imgs/common/Rate_card_00.gif"> &nbsp;&nbsp;<b>NA</b></div>
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_00.gif"> &nbsp;&nbsp;<b>NA</b></div>
      
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_00.gif"> &nbsp;&nbsp;<b>NA</b></div>
      											<div style="padding: 7px 0pt 0pt;"><img src="/imgs/common/Rate_card_00.gif"> &nbsp;&nbsp;<b>NA</b></div>
      										</div>
      									</div> 
      								</td>
      								<td align="center" valign="middle">
      									<div style="padding: 3px 0pt 0pt 18px; float: left;">
      
      										<a href="javascript:loginbox('http://www.newfullhyd.com/blocks/profiles/common/user_rating.php', 'movies', '2663', 'editorial_loginbox', '', '2');">
      											<div><img src="/imgs/common/rate_it_button.gif" border="0"></div></a>
      										<div class="a10bl"><a href="/feature/38972?cslink=cs_profile_about_our_rating#ratings_calc"><u>About Ratings</u></a></div>
      									</div>
      								</td>
      							</tr>
      						</tbody></table>
       					</td>
      
      					<td class="a10bl" style="padding-right: 5px;" valign="top" width="128">
      						<div style="float: right;">
      							<div class="v9r">
      <b>User Suggestions</b>							</div>
      							<b>
      							<div style="padding-top: 0pt;">Can watch again - <span class="v10bl"><b>No</b></span></div>
      							<div>Good for kids - <span class="v10bl"><b>Yes</b></span></div>
      
      							<div>Good for dates - <span class="v10bl"><b>Unsure</b></span></div>
      							<div>Wait to rent it - <span class="v10bl"><b>Unsure</b></span></div>
      							</b>
      						</div>
      					</td>
      				</tr>
      				<tr>
      
      					<td colspan="4"><img src="/imgs/common/spacer.gif" height="30"></td>
      				</tr>
      			</tbody></table>
      		</td>
      	</tr>
      </tbody></table>
      <div id="editorial_loginbox"></div>
      
      
      <!-- STARTING profiles/common/user.php -->
      
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      
      	<tbody><tr>
      		<td rowspan="3" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td class="v12r" style="padding: 0pt 0pt 6px 10px;" width="159"><b>What Hyderabadis Say!</b><br></td>
      		<td class="v9r" style="padding-right: 6px;" align="right" width="436">
      			Showing <b>1 - 15</b> of 52  | <a href="/profile.php/movies/2663/2/?pagenum=1"> <u>Next</u></a>  | <a href="/profile.php/movies/2663/2/?pagenum=3"> <u>Last</u></a></td>
      
      	</tr>
       	<tr>
              <td colspan="2" bgcolor="#b0b0b0" height="1" width="595"> <img src="/imgs/common/spacer.gif" height="1" width="595"></td>
          </tr>
      	<tr>
      		<td colspan="2" class="v10r" style="padding: 2px 5px 10px 0pt;" align="right" width="595">
      			[
      			 <a href="/profile/movies/2663/1?sort=positive"><span class="v10r"><u>Positive</u></span></a> <a href="/profile/movies/2663/1?sort=negative"><span class="v10r" style="padding-left: 2px;"><u>Negative</u></span></a> <span class="v10r" style="padding-left: 2px;"><b>Newest</b></span> <a href="/profile/movies/2663/1?sort=most+recent&amp;morder=ASC"><span class="v10r" style="padding-left: 2px;"><u>Oldest</u></span></a> <a href="/profile/movies/2663/1?sort=most+helpful&amp;horder=DESC"><span class="v10r" style="padding-left: 2px;"><u>Most Helpful</u></span></a> <a href="/profile/movies/2663/1?sort=most+helpful&amp;horder=ASC"><span class="v10r" style="padding-left: 2px;"><u>Least Helpful</u></span></a>			]
      		</td>
      
          </tr>
      </tbody></table>
      <!-- HAVE TO END THE TABLE HERE SINCE THE COL WIDTHS IN THE FIRST ROW ARE ARBIT, AND WILL CLASH WITH COLUMN WIDTHS LATER -->
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="1000" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top"></td>
      		<td colspan="2"><img src="/imgs/common/spacer.gif" height="1" width="595"></td>
      	</tr>
      	<!-- <TR> -->
      	<tr>
      
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11780"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 21st Dec, 2008, 5:10pm | <a href="#11780"><u>Permalink</u></a> ]</span>
      
      			</div>
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11780" style="margin: 0px;">
      				<b>
      					<input name="review" value="11780" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11780">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      
      				</div>
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11780"></a>
      			cxgh						<br><br><br><br>
      
      <!-- HELPFUL FORM START -->
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11780" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11780" method="post" value="11780" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11780" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11780','helpful11780', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11780" style="margin: 0px;">
      							<input name="review" value="11780" type="hidden">
      							<a href='javascript:loginsubmit("removal11780","helpful11780", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11779"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 21st Dec, 2008, 4:56pm | <a href="#11779"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11779" style="margin: 0px;">
      				<b>
      					<input name="review" value="11779" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11779">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11779"></a>
      			sdhfj						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11779" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11779" method="post" value="11779" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11779" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11779','helpful11779', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11779" style="margin: 0px;">
      							<input name="review" value="11779" type="hidden">
      							<a href='javascript:loginsubmit("removal11779","helpful11779", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11778"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 20th Dec, 2008, 6:26pm | <a href="#11778"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11778" style="margin: 0px;">
      				<b>
      					<input name="review" value="11778" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11778">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11778"></a>
      			sdh						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11778" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11778" method="post" value="11778" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11778" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11778','helpful11778', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11778" style="margin: 0px;">
      							<input name="review" value="11778" type="hidden">
      							<a href='javascript:loginsubmit("removal11778","helpful11778", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11777"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 20th Dec, 2008, 2:50pm | <a href="#11777"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11777" style="margin: 0px;">
      				<b>
      					<input name="review" value="11777" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11777">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11777"></a>
      			zdfh						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11777" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11777" method="post" value="11777" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11777" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11777','helpful11777', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11777" style="margin: 0px;">
      							<input name="review" value="11777" type="hidden">
      							<a href='javascript:loginsubmit("removal11777","helpful11777", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11776"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 8:30pm | <a href="#11776"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11776" style="margin: 0px;">
      				<b>
      					<input name="review" value="11776" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11776">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11776"></a>
      			fdgj						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11776" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11776" method="post" value="11776" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11776" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11776','helpful11776', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11776" style="margin: 0px;">
      							<input name="review" value="11776" type="hidden">
      							<a href='javascript:loginsubmit("removal11776","helpful11776", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11775"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 7:14pm | <a href="#11775"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11775" style="margin: 0px;">
      				<b>
      					<input name="review" value="11775" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11775">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11775"></a>
      			gvuk						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11775" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11775" method="post" value="11775" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11775" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11775','helpful11775', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11775" style="margin: 0px;">
      							<input name="review" value="11775" type="hidden">
      							<a href='javascript:loginsubmit("removal11775","helpful11775", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11774"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 7:14pm | <a href="#11774"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11774" style="margin: 0px;">
      				<b>
      					<input name="review" value="11774" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11774">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11774"></a>
      			xfhj						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11774" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11774" method="post" value="11774" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11774" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11774','helpful11774', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11774" style="margin: 0px;">
      							<input name="review" value="11774" type="hidden">
      							<a href='javascript:loginsubmit("removal11774","helpful11774", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11773"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 7:12pm | <a href="#11773"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11773" style="margin: 0px;">
      				<b>
      					<input name="review" value="11773" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11773">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11773"></a>
      			dsfjhg						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11773" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11773" method="post" value="11773" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11773" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11773','helpful11773', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11773" style="margin: 0px;">
      							<input name="review" value="11773" type="hidden">
      							<a href='javascript:loginsubmit("removal11773","helpful11773", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11772"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:54pm | <a href="#11772"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11772" style="margin: 0px;">
      				<b>
      					<input name="review" value="11772" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11772">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11772"></a>
      			sdtu						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11772" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11772" method="post" value="11772" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11772" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11772','helpful11772', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11772" style="margin: 0px;">
      							<input name="review" value="11772" type="hidden">
      							<a href='javascript:loginsubmit("removal11772","helpful11772", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11771"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:52pm | <a href="#11771"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11771" style="margin: 0px;">
      				<b>
      					<input name="review" value="11771" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11771">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11771"></a>
      			xsdf						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11771" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11771" method="post" value="11771" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11771" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11771','helpful11771', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11771" style="margin: 0px;">
      							<input name="review" value="11771" type="hidden">
      							<a href='javascript:loginsubmit("removal11771","helpful11771", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11770"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:50pm | <a href="#11770"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11770" style="margin: 0px;">
      				<b>
      					<input name="review" value="11770" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11770">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11770"></a>
      			dft						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11770" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11770" method="post" value="11770" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11770" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11770','helpful11770', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11770" style="margin: 0px;">
      							<input name="review" value="11770" type="hidden">
      							<a href='javascript:loginsubmit("removal11770","helpful11770", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11769"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:48pm | <a href="#11769"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11769" style="margin: 0px;">
      				<b>
      					<input name="review" value="11769" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11769">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11769"></a>
      			xdcgfjh						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11769" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11769" method="post" value="11769" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11769" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11769','helpful11769', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11769" style="margin: 0px;">
      							<input name="review" value="11769" type="hidden">
      							<a href='javascript:loginsubmit("removal11769","helpful11769", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11768"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:45pm | <a href="#11768"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11768" style="margin: 0px;">
      				<b>
      					<input name="review" value="11768" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11768">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11768"></a>
      			xdsfh						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11768" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11768" method="post" value="11768" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11768" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11768','helpful11768', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11768" style="margin: 0px;">
      							<input name="review" value="11768" type="hidden">
      							<a href='javascript:loginsubmit("removal11768","helpful11768", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11767"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 6:45pm | <a href="#11767"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11767" style="margin: 0px;">
      				<b>
      					<input name="review" value="11767" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11767">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11767"></a>
      			dfgh						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11767" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11767" method="post" value="11767" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11767" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11767','helpful11767', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11767" style="margin: 0px;">
      							<input name="review" value="11767" type="hidden">
      							<a href='javascript:loginsubmit("removal11767","helpful11767", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr>	<tr>
      		<td rowspan="2" style="padding: 10px 10px 0pt;" align="center" valign="top" width="71">
      			</td>
      
      		<td style="padding: 10px 0pt 6px;" width="524">
      				<a name="#11766"></a>
      			<div style="float: left; line-height: 20px; vertical-align: top;">
      				<b><span class="v11bl"><b>Kishore Kadiyala</b></span></b>
      				<span class="a10bl">	[ 19th Dec, 2008, 5:21pm | <a href="#11766"><u>Permalink</u></a> ]</span>
      			</div>
      
      			<div class="a10b" style="float: right; padding-right: 55px;">
      				<form name="vo11766" style="margin: 0px;">
      				<b>
      					<input name="review" value="11766" style="margin: 0px;" type="hidden">
      				</b>
      				<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;" id="votes11766">
      					<div style="margin: 0px; padding: 0px; float: left; line-height: 22px; vertical-align: middle;">0 votes</div>
      				</div>
      
      				</form>
      			</div>
      		</td>
      	</tr>
      	<tr> 
      		<td class="v11bl" style="padding: 0pt 55px 20px 0pt;" width="524">
      			<a name="11766"></a>
      			sfjg						<br><br><br><br>
      <!-- HELPFUL FORM START -->
      
      			<div style="border: 1px dashed rgb(102, 102, 102); padding: 4px; background-color: rgb(235, 235, 235);">
      				<div id="helpful11766" style="margin: 0px; padding: 0px;">
      						<span class="v9b">&nbsp;<b>Was this comment helpful?</b></span><br>
      					<form name="review11766" method="post" value="11766" style="margin: 0px;" action="" onsubmit="false">
      						<span class="a10b">
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="2" name="rating_type_id" type="radio">Very Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="1" name="rating_type_id" type="radio">Helpful &nbsp;
      
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="0.5" name="rating_type_id" type="radio">Somewhat Helpful &nbsp;
      							<input style="margin: 3px 2px 0pt 0pt; vertical-align: bottom;" value="-1" name="rating_type_id" type="radio">Not Helpful &nbsp;
      						</span>
      						<input value="11766" name="review" type="hidden">
      						<input value="check" name="validateradio" type="hidden">
      						<input name="submit" value="Submit" style="margin-left: 10px;" onclick="return loginsubmit('review11766','helpful11766', 'http://www.newfullhyd.com/blocks/profiles/common/helpful.php')" type="button">
      					</form>
      	<!-- HELPFUL FORM ENDS -->
      
      					<div style="padding: 0pt;">
      						<form name="removal11766" style="margin: 0px;">
      							<input name="review" value="11766" type="hidden">
      							<a href='javascript:loginsubmit("removal11766","helpful11766", "http://www.newfullhyd.com/blocks/profiles/common/removal1.php")'>
      								<span class="v9b"><u><b>Request removal of this comment</b></u></span></a>
      						</form>
      					</div>
      				</div>
      
      			</div>
      		</td>
      	</tr>
      	<tr>
      		<td colspan="5" bgcolor="#b0b0b0" height="1" width="595"></td>
      	</tr></tbody></table>
      
      
      <!-- STARTING profiles/common/footer.php -->
      
      </div>
      
      </div>
      <table border="0" cellpadding="0" cellspacing="0" width="596">
      	<tbody><tr>
      		<td rowspan="2" style="padding-left: 1px;" align="left" bgcolor="#000000" valign="top">
      		</td><td bgcolor="#990000" height="4" width="595"><img src="/imgs/common/spacer.gif" height="4" width="582"></td>
      	</tr>
      		<tr><td class="v9r" style="padding: 5px 10px 60px;" bgcolor="#f3f3f3" width="595"><span class="v12r"><b>See something wrong?</b></span> Find something incorrect or missing on this profile? <a href="#" onclick="javascript:addlisting('correction', '%2Fprofile%2Fmovies%2F2663%2F2%2F'); return false;"><u>Suggest a correction!</u></a>
      		<div id="addlisting"></div></td>
      
      	</tr>
      </tbody></table></div></td><td align="left" bgcolor="#dcdee6" valign="top" width="164"><div>
      
      <!-- STARTING section/common/ad_right.php -->
      
      	  <table border="0" cellpadding="0" cellspacing="0" height="100%">
              <tbody><tr> 
                <td style="padding-bottom: 5px;" align="center" bgcolor="#dcdee6" height="331" valign="top" width="164">
      			<div class="v8g" style="padding: 3px 0pt;">ADVERTISEMENTS</div>
      						<script type="text/javascript"><!--
      			document.write('<DIV ID="textads" STYLE="padding-bottom: 7px"><IFRAME BGCOLOR="#FFFFFF" FRAMEBORDER="0" STYLE="border: 1px solid black" WIDTH="160" HEIGHT="142" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="NO" SRC="http://www.newfullhyd.com/blocks/section/common/textads.php?urlbit=/profile/movies/2663/2/"></IFRAME></DIV>')
      			//-->
      			</script><div id="textads" style="padding-bottom: 7px;"><iframe bgcolor="#FFFFFF" style="border: 1px solid black;" marginwidth="0" marginheight="0" src="http://www.newfullhyd.com/blocks/section/common/textads.php?urlbit=/profile/movies/2663/2/" frameborder="0" height="142" scrolling="no" width="160"></iframe></div>
      
      					  </td>
              </tr>
            </tbody></table></div></td></tr><tr><td colspan="30">
      
      <!-- STARTING section/common/footer.php -->
      
      <table align="center" bgcolor="#7881a0" border="0" cellpadding="0" cellspacing="0">
        <tbody><tr> 
          <td bgcolor="#7881a0"> <img src="/imgs/common/spacer.gif" height="19" width="760"></td>
        </tr>
        <tr> 
          <td class="a11bl" style="padding: 10px 0pt;" align="center" bgcolor="#ffffff" valign="top" width="760"><u>Advertisers</u> 
            | <a href="/articles/5"><u>Help</u></a> | <a href="/home/section/other/?action=contact"><u>Contact Us</u></a> | <a href="/articles/4"><u>About Us</u></a> | <u>Submit An Event</u> 
            | <u>Get Listed</u> | <u>Privacy Policy</u> | <u>Disclaimer</u> | <u>We're 
            Hiring</u> <br>
      
            <br>
            © Copyright 1999-2009 LRR Technologies (Hyderabad), Pvt Ltd. All rights 
            reserved. <i>fullhyd, fullhyderabad and Welcome To The <br>
            Neighbourhood</i> are trademarks of LRR Technologies (Hyderabad), Pvt Ltd. 
            The textual, graphic, audio and audiovisual material <br>
            in this site is protected by copyright law. You may not copy, distribute, 
            or use this material except as necessary for your <br>
            personal, non-commercial use. Any trademarks are the properties of their 
            respective owners.</td>
      
        </tr>
      </tbody></table>
      <script language="JavaScript">
      var now = new Date();
      date = now.getYear() + "-" + (now.getMonth()+1) + "-" + now.getDate();
      time = now.getHours()+":"+now.getMinutes()+":"+now.getSeconds();
      document.write('<IMG SRC="/inc/logging.php?s=%2Fprofile%2Fmovies%2F2663%2F2%2F&d='+date+'&t='+time+'" height=1 width=1>');
      </script><img src="/inc/logging.php?s=%2Fprofile%2Fmovies%2F2663%2F2%2F&amp;d=108-12-21&amp;t=17:7:8" height="1" width="1">
      </td></tr></tbody></table></body></html>

      Comment

      • daniel2335
        New Member
        • Dec 2007
        • 49

        #4
        xmlHttp.onready statechange=sta teChangedALL;
        xmlHttp.open("G ET",url,true) ;
        xmlHttp.send(nu ll);
        I was told this code is incorrect should be:
        Code:
        xmlHttp.open("GET",url,true); 
        xmlHttp.onreadystatechange=stateChangedALL; 
        xmlHttp.send(null);
        Im guessing you got that from w3schools as many have.

        The fact the alert is working suggests its a timing based problem and its simply delaying bad code enough to allow the ajax request to work. (had that one before) Although your code is very hard to read, as future advice try using CSS and reducing the size of your files.

        Also try using an absolute url for the ajax.

        Comment

        • acoder
          Recognized Expert MVP
          • Nov 2006
          • 16032

          #5
          OK, I didn't need the whole code especially if it's so long, but I see that you call morerating on submit. This is obviously a problem because the form will submit before you get the response from the Ajax call unless you use a synchronous request (which is not a good idea in most cases). Submit the form when the response is complete.

          Comment

          • knkk
            New Member
            • Jun 2007
            • 49

            #6
            acoder, thanks, I got this one - I had to make this change in the morerating function:

            Code:
            		xmlHttp.onreadystatechange=stateChangedALL;
            		xmlHttp.open("GET",url,true);
            		xmlHttp.send(null);
            		return false; /*this was "return true" earlier*/
            	}

            Comment

            • acoder
              Recognized Expert MVP
              • Nov 2006
              • 16032

              #7
              Yes, that should work too, but then you have a return false in the else part too, so you could just have it at the end outside the if statement. You also do not need the return false in the submit button onclick because the morerating function already returns. Just one question though: if you return false, how can you submit?

              Comment

              • knkk
                New Member
                • Jun 2007
                • 49

                #8
                I guess the idea is not to submit, since if the submit button does not return false, the submit action will happen, and that means that the page will get refreshed.

                Comment

                • acoder
                  Recognized Expert MVP
                  • Nov 2006
                  • 16032

                  #9
                  In that case, use a normal button, so you don't need to worry about returning false.

                  Comment

                  Working...