function FullHotelNameOnMouseOver()
{
     var i=1;
    if(document.getElementById('lnkHotelCount') == null)
	{
	  hotelCount = 0;
	}
	else
	{
      hotelCount = document.getElementById('lnkHotelCount').title;
	}

    for (i=1;i<=hotelCount;i++)
    { 
       hotelName = GetTag("lnkHotelName" + i.toString()).innerHTML;
       hotelName = hotelName.length > 45 ? hotelName.substring(0,45) + "..." : hotelName;
       GetTag("lnkHotelName" + i.toString()).innerHTML = hotelName;
       
    }
    if(document.getElementById('lnkHotelByLocationCount') == null)
	{
		hotelCount = 0;
	}
    else
	{
      hotelCount = document.getElementById('lnkHotelByLocationCount').title;
	}

    for (i=1;i<=hotelCount;i++)
    { 
       hotelName = GetTag("lnkHotel" + i.toString()).innerHTML;
       hotelName = hotelName.length > 25 ? hotelName.substring(0,25) + "...." : hotelName;
       GetTag("lnkHotel" + i.toString()).innerHTML = hotelName;
    }
    
    if(document.getElementById('lnkHotelsCount') == null)
	{
		hotelCount = 0;
	}
    else
	{
       hotelCount = document.getElementById('lnkHotelsCount').title;
	}
    
     
    for (i=1;i<=hotelCount;i++)
    { 
       hotelName = GetTag("lnkHotelsName" + i.toString()).innerHTML;
       hotelName = hotelName.length > 28 ? hotelName.substring(0,28) + "...." : hotelName;
       GetTag("lnkHotelsName" + i.toString()).innerHTML = hotelName;
    }
    
     if(document.getElementById('lnkFeatureCount') == null)
	{
		hotelCount = 0;
	}
    else
	{
       hotelCount = document.getElementById('lnkFeatureCount').title;
	}
    
    for (i=1;i<=hotelCount;i++)
    { 
       hotelName = GetTag("tdFeatureCount" + i.toString()).innerHTML;
       hotelName = hotelName.length > 28 ? hotelName.substring(0,28) + "...." : hotelName;
       GetTag("tdFeatureCount" + i.toString()).innerHTML = hotelName;
    }
}
function showGG()
{
window.open('/travel/travel_resources/goldenguarantee.asp','GG','width=820,height=630,resizable=no,scrollbars=yes,toolbar=no,status=no,titlebar=no'); 
} 
