var gTop=0;
  var gIncVal=0;
  // var timeOutValue can be used to adjust the speed of scroller.
  var timeOutValue=10;
    
  function scrollMe(arg)
  {    
    var objEncNav=document.getElementById('encNav');
    
    // var scrollAmount define the fast and
    // the amount of scrolling pane
    var scrollAmount=293;
//    var objEncNavHeight=parseInt(objEncNav.offsetWidth);
	var objEncNavHeight=1180;   
	// objEncNavHeight width is calculated based on objEncNavHeight = (scrollAmount * total_hidden_tab + (2 * total_hidden_tab))
    var objEncNavTop=objEncNav.style.left;
    // var barHeight defines the heigt of inner layer
    // it must set -10 from max height
    var barHeight=235;   

	if(!objEncNavTop)
      objEncNavTop=0;
    else
      objEncNavTop=objEncNavTop.substring(0,objEncNavTop.length-2);

    if(arg>0)
    {
      if(objEncNavTop>=0 || (objEncNavHeight>(-(objEncNavHeight)+objEncNavTop))  )
      {
        incrementValue=scrollAmount;  
      }
      else if(objEncNavTop>(-(objEncNavHeight)-(scrollAmount)))
      {
		  if(objEncNavTop>= -1200)
		  {
            incrementValue=scrollAmount; 
		  }
		  else
		  {
			   incrementValue=0; 
		  }
	  } 
      else
      {
        incrementValue=0; 
	  }
      encSmoothScroll("minus", parseInt(objEncNavTop), parseInt(incrementValue));
    }
    else
    {
      if(objEncNavTop<0 && ((parseInt(objEncNavTop)+scrollAmount) < 0))
      {
        incrementValue=scrollAmount; 
      }
      else
      {
        incrementValue=-objEncNavTop-0;    
      }
      encSmoothScroll("plus", parseInt(objEncNavTop), parseInt(incrementValue));
    }
  }
  function encSmoothScroll(dir, currentVal, incValue)
  {
    gTop=currentVal;
    gIncVal=incValue;
    encScrollBy(dir, 0)
  }
  function encScrollBy(dir, val)
  { 
    if(val<gIncVal)
    {
      var tmpInc;      
      if((gIncVal-val)>1)      
      {
        tmpInc=Math.ceil((gIncVal-val)/10);
        if(tmpInc <1)
          tmpInc=1;
      }
      else
      {
        tmpInc=gIncVal-val;
      }
      
      val+=tmpInc;
      
      var objEncNav=document.getElementById('encNav');
      if(dir=="plus")
      {
        objEncNav.style.left=gTop+val+"px";
      }
      else if(dir=="minus")
      {
        objEncNav.style.left=gTop-val+"px";
      }
      var t=setTimeout("encScrollBy('"+dir+"', "+val+");", timeOutValue);
    }
    else
    {
      clearTimeout(t);
    }
  }
  
function zxcBAnimator(zxcmde,zxcobj,zxcsrt,zxcfin,zxctime){
 if (typeof(zxcobj)=='string'){ zxcobj=document.getElementById(zxcobj); }
 if (!zxcobj||(!zxcsrt&&!zxcfin)||zxcsrt==zxcfin) return;
 var zxcoop=zxcobj[zxcmde.replace(/[-#]/g,'')+'oop'];
 if (zxcoop){
  clearTimeout(zxcoop.to);
  if (zxcoop.srtfin[0]==zxcsrt&&zxcoop.srtfin[1]==zxcfin&&zxcmde.match('#')) zxcoop.update([zxcoop.data[0],(zxcoop.srtfin[0]==zxcoop.data[2])?zxcfin:zxcsrt],zxctime);
  else zxcoop.update([zxcsrt,zxcfin],zxctime);
 }
 else zxcobj[zxcmde.replace(/[-#]/g,'')+'oop']=new zxcBAnimatorOOP(zxcmde,zxcobj,zxcsrt,zxcfin,zxctime);
}

function zxcBAnimatorOOP(zxcmde,zxcobj,zxcsrt,zxcfin,zxctime){
 this.srtfin=[zxcsrt,zxcfin];
 this.to=null;
 this.obj=zxcobj;
 this.mde=zxcmde.replace(/[-#]/g,'');
 this.update([zxcsrt,zxcfin],zxctime);
}

zxcBAnimatorOOP.prototype.update=function(zxcsrtfin,zxctime){
 this.time=zxctime||this.time||2000;
 this.data=[zxcsrtfin[0],zxcsrtfin[0],zxcsrtfin[1]];
 this.srttime=new Date().getTime();
 this.cng();
}

zxcBAnimatorOOP.prototype.cng=function(){
 var zxcms=new Date().getTime()-this.srttime;
 this.data[0]=(this.data[2]-this.data[1])/this.time*zxcms+this.data[1];
 if (this.mde!='left'&&this.mde!='top'&&this.data[0]<0) this.data[0]=0;
 if (this.mde!='opacity') this.obj.style[this.mde]=this.data[0]+'px';
 else  zxcOpacity(this.obj,this.data[0]);
 if (zxcms<this.time) this.to=setTimeout(function(zxcoop){return function(){zxcoop.cng();}}(this),10);
 else {
  this.data[0]=this.data[2];
  if (this.mde!='opacity') this.obj.style[this.mde]=this.data[0]+'px';
  else zxcOpacity(this.obj,this.data[0]);
 }
}

function zxcOpacity(zxcobj,zxcopc){
 if (zxcopc<0||zxcopc>100) return;
 zxcobj.style.filter='alpha(opacity='+zxcopc+')';
 zxcobj.style.opacity=zxcobj.style.MozOpacity=zxcobj.style.KhtmlOpacity=zxcopc/100-.001;
}

function Bounce(id,start,finish1,time1,finish2,time2){
 var zxcobj=document.getElementById(id);
 zxcobj.style.display="block";
 clearTimeout(zxcobj.bto);
 zxcBAnimator('top',zxcobj,start,finish1,time1);
 zxcobj.bto=setTimeout(function(){ zxcBAnimator('top',zxcobj,finish1,finish2,time2); },time1);
}

 function openwebsitesurvey(){
 					lnk="webpages/website_survey.asp"
					var win=window.open(lnk,"","width=720,height=570,toolbars=0,scrollbars=1,resizable=no")
					}
 
function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}

function virtural_tour_360()
{

var win=window.open("webimages/360_virtural_tour/emarald_cochin/lobby/Emarald_Cochin_Lobby_tour.html","virtural_tour","width=640,height=480,toolbars=0,scrollbars=no,menubar=0,statubar=0");
}

function emailpage()
	{
 var win=window.open("webpages/emailpage.asp?url="+document.location.href,"emailpage","width=500,height=360,toolbars=0,scrollbars=no,menubar=0,statubar=0")
	}
	
	var timerID = setInterval(startLoading,20);
	function startLoading()	{
		var elem = document.getElementById("divPageLoading");
	}
	function showIsPageLoading() {
		this.clearInterval(timerID);
		document.getElementById("divPageLoading").innerHTML="";
		document.getElementById("divPageLoading").style.display="none";
		document.getElementById("divPageLoading").style.visibility="hidden";
	}  
	
   function closeGreeting_wanted()    {
	   if (document.getElementById("wanted").style.display=='block') {
		   	document.getElementById("wanted").style.display='none';
			}
	  } 
function home_banner(){  
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
			  	Pic[1]="webimages/homepage/banner_images/emarald_holidays.jpg";
			  	Pic[2]="webimages/homepage/banner_images/wayanad_1.jpg";
			  	Pic[3]="webimages/homepage/banner_images/wayanad_2.jpg";
			  	Pic[4]="webimages/homepage/banner_images/wayanad_3.jpg";


			  	Pic[5]="webimages/homepage/banner_images/delhi_roomview3.jpg";
			  	Pic[6]="webimages/homepage/banner_images/delhi_reception.jpg";
			  	Pic[7]="webimages/homepage/banner_images/delhi_roomview5.jpg";
			  	Pic[8]="webimages/homepage/banner_images/delhi_roomview.jpg";
			  	Pic[9]="webimages/homepage/banner_images/delhi_frontview.jpg";
		
						
				Pic[10]="webimages/homepage/banner_images/pristine_island_alappuzha.jpg";  	
					
			  	Pic[11]="webimages/homepage/banner_images/emarald_cochin_nightview.jpg";
 			  	Pic[12]="webimages/homepage/banner_images/emarald_cochin_reception.jpg"; 
			  	Pic[13]="webimages/homepage/banner_images/emarald_cochin_conferencehall.jpg";				
				Pic[14]="webimages/homepage/banner_images/emarald_cochin_restaurant.jpg";
				Pic[15]="webimages/homepage/banner_images/emarald_cochin_roomview.jpg";				
				
				Pic[16]="webimages/homepage/banner_images/emarald_chennai.jpg";
				Pic[17]="webimages/homepage/banner_images/emarald_chennai_reception.jpg";
				Pic[18]="webimages/homepage/banner_images/emarald_chennai_restaurant.jpg";
				Pic[19]="webimages/homepage/banner_images/emarald_chennai_roomview.jpg";
				Pic[20]="webimages/homepage/banner_images/emarald_chennai_coffeeshop.jpg";				
				

 			  	Pic[21]="webimages/homepage/banner_images/silentvalley_poolview.jpg"; 
			  	Pic[22]="webimages/homepage/banner_images/silentvalley_riverview.jpg";
 			  	Pic[23]="webimages/homepage/banner_images/silentvalley_restaurant.jpg"; 
 			  	Pic[24]="webimages/homepage/banner_images/silentvalley_reception.jpg"; 
 			  	Pic[25]="webimages/homepage/banner_images/silentvalley_coffeeshop.jpg"; 		

			  	Pic[26]="webimages/homepage/banner_images/silentvalley_mannarkkad.jpg";				
				
			  	Pic[27]="webimages/homepage/banner_images/emarald_trivandrum.jpg";
              	Pic[28]="webimages/homepage/banner_images/emarald_Gundalpet.jpg";

              	Pic[29]="webimages/homepage/banner_images/pristine_island_alappuzha_conferenceboat.jpg";				
				Pic[30]="webimages/homepage/banner_images/pristine_island_alappuzha_9.jpg";
              	Pic[31]="webimages/homepage/banner_images/pristine_island_alappuzha_cottage.jpg";
              	Pic[32]="webimages/homepage/banner_images/pristine_island_alappuzha_view.jpg"; 		
				Pic[33]="webimages/homepage/banner_images/pristine_island_alappuzha_restaurant.jpg";
				
              	Pic[34]="webimages/homepage/banner_images/silentvalley_ayurvedic.jpg";
				

var p = Pic.length;


document.write('<div class="AnimatedLetterBoxFeatureControl" onmouseover="AnimatedLetterBoxFeature1Namespace.moused=true;" onmouseout="AnimatedLetterBoxFeature1Namespace.moused=false;" id="AnimatedLetterBoxFeature1" ><div style="width: 950px;  height:350px;  "><div id="currentFeature" class="LetterBoxFeatureContainer" style="position: relative; z-index: 1;"></div></div>')
for (k = 1; k < p; k++) {
if (k==1)
{
document.write('<div class="LetterBoxFeatureControl" style="display: none;" id="FeatureItem'+k+'" ><div class="LetterBoxFeatureImage"  id="FeatureItem'+k+'Image"><a href="http://www.emaraldholidays.com/" target="_blank"><img class="imageLink" src="'+Pic[k]+'"></a></div>')
document.write('</div>')
 }
 else
 {
document.write('<div class="LetterBoxFeatureControl" style="display: none;" id="FeatureItem'+k+'" ><div class="LetterBoxFeatureImage"  id="FeatureItem'+k+'Image"><img class="imageLink" src="'+Pic[k]+'"></div>')
document.write('</div>')
 }
 


 }
 
 
 
 document.write('</div>')
    //initialize this control
    
    curNamespace.BigFeatures = new Array(document.getElementById('FeatureItem1'),document.getElementById('FeatureItem2'),document.getElementById('FeatureItem3'),document.getElementById('FeatureItem4'),document.getElementById('FeatureItem5'),document.getElementById('FeatureItem6'),document.getElementById('FeatureItem7'),document.getElementById('FeatureItem8'),document.getElementById('FeatureItem9'),document.getElementById('FeatureItem10'),document.getElementById('FeatureItem11'),document.getElementById('FeatureItem12'),document.getElementById('FeatureItem13'),document.getElementById('FeatureItem14'),document.getElementById('FeatureItem15'),document.getElementById('FeatureItem16'),document.getElementById('FeatureItem17'),document.getElementById('FeatureItem18'),document.getElementById('FeatureItem19'),document.getElementById('FeatureItem20'),document.getElementById('FeatureItem21'),document.getElementById('FeatureItem22'),document.getElementById('FeatureItem23'),document.getElementById('FeatureItem24'),document.getElementById('FeatureItem25'),document.getElementById('FeatureItem26'),document.getElementById('FeatureItem27'),document.getElementById('FeatureItem28'),document.getElementById('FeatureItem29'),document.getElementById('FeatureItem30'),document.getElementById('FeatureItem31'),document.getElementById('FeatureItem32'),document.getElementById('FeatureItem33'),document.getElementById('FeatureItem34'));
    curNamespace.curObj = document.getElementById("currentFeature");
    
    
   
    if(curNamespace.BigFeatures.length > 0){
        curNamespace.curObj.innerHTML = curNamespace.BigFeatures[0].innerHTML;
        setTimeout("AnimatedLetterBoxFeature1Namespace.imgWait()", curNamespace.WaitTime);
    }
} 


function hotel_properties(){
document.write('<div id="encFilm">');
document.write('<div id="encFilmInner">');
document.write('<div id="encNav"> ');
document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* First */
document.write('<tr><td width="213" align="left" valign="top"><h2>Emarald Hotel  Cochin</h2></td></tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><a href="webpages/cochin_emarald_hotel.asp" title="Silent Valley Hotel  Cochin"><img src="webimages/homepage/cochin_scroll.jpg" alt="Silent Valley Hotel  Cochin" title="Silent Valley Hotel  Cochin" width="285" height="94" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">Cochin is a breathtakingly scenic and prosperous city in the state of Kerala in Southern Indian Peninsula, hailed as Queen of the Arabian Sea...</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top"><a href="webpages/cochin_emarald_hotel.asp" class="more" title="" >');
document.write('<img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  title="More" width="50" height="19" border="0" />');
document.write('</a></td>');
document.write('</tr>');


/* First End */
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="70" align="left" valign="top" style="padding-left:4px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">');
/* Second */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Emarald Hotel  Delhi</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><a href="webpages/delhi_emarald_hotel.asp" title="Silent Valley Hotel  Delhi"><img src="webimages/homepage/delhi_scroll.jpg" alt="Silent Valley Hotel  Delhi" title="Silent Valley Hotel  Delhi" width="285" height="94" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">New Delhi is the vibrant capital city of worlds largest democracy, India. Being the third largest city of India, New Delhi is a fusion of the ancient and the modern... </td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top"><a href="webpages/delhi_emarald_hotel.asp" class="more" title="" >');
document.write('<img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  width="50" height="19" border="0" />');
document.write('</a></td>');
document.write('</tr>');


/* Second End */
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Third */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Emarald Hotel  Chennai</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><a href="webpages/chennai_emarald_hotel.asp" title="Silent Valley Hotel  Chennai"><img src="webimages/homepage/chennai_scroll.jpg" alt="Silent Valley Hotel  Chennai" title="Silent Valley Hotel  Chennai" width="285" height="94" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">Chennai is the largest city in Tamil Nadu and the fourth largest metropolitan city of India. The city was formerly known as Madras and was established by the British...</td>');
document.write('</tr>');
document.write('<tr><td align="left" valign="top" height="10"></td></tr>');
document.write('<tr><td align="right" valign="top"><a href="webpages/chennai_emarald_hotel.asp" class="more" title="" >');
document.write('<img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  width="50" height="19" border="0" />');
document.write('</a></td>');
document.write('</tr>');
/* Third End */
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Fourth */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Emarald Ayurvedic Resort - Perintalmanna</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" ><a href="webpages/emarald_ayurveda_resort.asp" title="Ayurvedic treatments are available at Emarald Ayurvedic health resort"><img src="webimages/homepage/perintamanna.jpg" alt="Ayurvedic treatments are available at Emarald Ayurvedic health resort" title="Ayurvedic treatments are available at Emarald Ayurvedic health resort" width="285" height="94" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">Emarald Ayurvedic Resort is a  luxury health spa resort, just an hour drive from Calicut Airport. Ayurvedic treatments are available at this health resort through Arya Vaidya Pharmacy...</td>');
document.write('</tr>'); 
document.write('<tr>');
document.write('<td align="left" valign="top" height="2"></td>');
document.write('</tr>');

document.write('<tr>');
document.write('<td align="right" >');
document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center" valign="top"><a href="http://in-bookings.intechhs.com/BookingTool/mywebsite/homepage.aspx?shortname=silentvalley" target="_blank"><img src="webimages/layout/book_now_silentvalley.gif" width="201" height="26" border="0" alt="Emarald Ayurvedic Resort in Perintalmanna Book Now" title="Emarald Ayurvedic Resort in Perintalmanna Book Now" /></a></td><td align="right" valign="top" style="padding-top:5px;"><a href="webpages/emarald_ayurveda_resort.asp" class="more" title="" ><img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  width="50" height="19" border="0" /></a></td></tr></table>');
document.write('</td>');
document.write('</tr>');
/* Fourth end  */
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Fifth */
document.write('<tr>');
document.write('<td width="100%" align="left" valign="top"><h2>Pristine Island Resort  Alappuzha</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><a href="webpages/pristine_island_resort_alappuzha.asp" title="Pristine Island is a unique floating resort in Alappuzha"><img src="webimages/homepage/alappuzha_home.jpg" alt="Pristine Island is a unique floating resort in Alappuzha" title="Pristine Island is a unique floating resort in Alappuzha" width="285" height="92" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">A unique holiday experience, in the middle of a lake and floating villas awaits you at Alappuzha. Pristine Island is the best floating resort in Kerala with modern amenities...</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top"><a href="webpages/pristine_island_resort_alappuzha.asp" class="more" title="" >');
document.write('<img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  width="50" height="19" border="0" />');
document.write('</a></td>');
document.write('</tr>');
/* Fifth End*/
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Sixth */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Silent Valley Hotel  Mannarkkad</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><a href="webpages/silent_valley_hotel_mannarkkad.asp" title="Silent Valley Hotel at Mannarkkad is one of the largest in the town"><img src="webimages/homepage/mannarkkad.jpg" alt="Silent Valley Hotel at Mannarkkad is one of the largest in the town" title="Silent Valley Hotel at Mannarkkad is one of the largest in the town" width="285" height="94" border="0" /></a></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">Silent Valley Hotel is one of the largest hotels in Mannarkkad, situated at the busiest area of the town which is why it is the most desired business class hotel in Mannarkkad...</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top"><a href="webpages/silent_valley_hotel_mannarkkad.asp" class="more" title="" >');
document.write('<img src="webimages/homepage/more_btn.gif" alt="More" title="Read More"  width="50" height="19" border="0" />');
document.write('</a></td>');
document.write('</tr>');
/* Sixth End */
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Seventh */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Emarald - Gundalpet </h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><img src="webimages/homepage/gundalpet_scroll.jpg" alt="Emarald - Gundalpet" title="Emarald - Gundalpet" width="285" height="94" border="0" /></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">The Emarald Hotel in Gundalpet is situated at the most active area of the town, having 60 rooms with Food Court and Conference Hall. </td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top">&nbsp;</td>');
document.write('</tr>');
/* Seventh End*/
document.write('</table></td>');
document.write('<td width="2" align="left" valign="top">&nbsp;</td>');
document.write('<td width="1" align="left" valign="top"><img src="webimages/homepage/image_midline.jpg" alt="" width="1" height="214" /></td>');
document.write('<td width="71" align="left" valign="top" style="padding-left:4px;"><table width="213" border="0" cellspacing="0" cellpadding="0">');
/* Eight */
document.write('<tr>');
document.write('<td width="213" align="left" valign="top"><h2>Emarald Hotel Trivandrum</h2></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top"><img src="webimages/homepage/trivandrum_scroll.jpg" alt="Emarald Hotel Trivandrum" title="Emarald Hotel Trivandrum" width="285" height="94" border="0" /></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" class="home_text">The Emarald Hotel in Trivandrum is situated just near to Secratriat, with 65 rooms, Mutli-Cusine Restaurant and Conference Hall. </td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="left" valign="top" height="10"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="right" valign="top">&nbsp; </td>');
document.write('</tr>');
/* Eight end */
document.write('</table></td>');
 
document.write('</tr>');
document.write('</table>');
document.write('</div>');
document.write('</div>');
document.write('</div>	');	
}
