
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>



	<link rel="shortcut icon" href="http://www.hotelesdante.com/img/favicon.ico" type="image/x-icon" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 	
    
        <!--TITLE-->
        <title>Hotel Diana Tossa de Mar</title>
        
        <!-- METATAGS -->
    
        <meta name="robots" content="all" />
        <meta name="revisit-after" content="7 days" />
        <meta http-equiv="expires" content="0" />
        <meta http-equiv="cache-control" content="public">
        <meta http-equiv="pragma" content="no-cache"> 
        <meta http-equiv="content-language" content="es" />
        <meta name="title" content="Hotel Diana Tossa de Mar" />
        <meta name="description" content="El Hotel Diana está situado frente a la playa de Tossa de Mar. Ubicado en un edificio modernista protegido por el Ayuntamiento de Tossa de Mar." />
        <meta name="author" content="Hoteles Dante" />
        <meta name="date" content="2010-10-10T09:00:00+00:00" />
        <meta name="identifier-url" content="http://www.hotelesdante.com/" />
        <meta name="keywords" lang="es" content="" />
    
    
      
    <!--CSS-->
    <link href="includes/css/stylesheet.css" rel="stylesheet" type="text/css" />
    
    <meta name="google-site-verification" content="ckSjiAymqlcUUnH60xrBfqvIDUPoT4FPBkFzFC1R2q0" />
    
    <!--JS-->
<script src="http://www.hotelesdante.com/includes/js/jquery-1.3.2.min.js" type="text/javascript"></script>  


<!-- CALENDAR -->
<link type="text/css" href="includes/css/ui.core.css" rel="stylesheet" />


<script src="http://www.hotelesdante.com/includes/js/calendar_language/ui.datepicker-es.js" type="text/javascript"></script>

<script type="text/javascript">
	
	
	
</script>

<script type="text/javascript">
/* <![CDATA[ */
			
	$(document).ready(function() {
		$("#CheckInDate").datepicker($.extend({minDate: 0}, $.datepicker.regional['es']));
		$("#CheckOutDate").datepicker($.extend({minDate: 1}, $.datepicker.regional['es']));
		$("#CheckInDateBestWestern").datepicker($.datepicker.regional['es']);
	});
	
	function UpdateCheckOutDate(){
		if(parseInt(document.getElementById('Nights').value) < 1) document.getElementById('Nights').value = 1;
		utcCheckInDateTab = document.getElementById('CheckInDate').value.split("/");
		utcCheckOutDateTab = document.getElementById('CheckOutDate').value.split("/");
		utcCheckInDate = utcCheckInDateTab[1] + "/" + utcCheckInDateTab[0] + "/" + utcCheckInDateTab[2];
		utcCheckOutDate = utcCheckOutDateTab[1] + "/" + utcCheckOutDateTab[0] + "/" + utcCheckOutDateTab[2];
		utcDateDiff = dateDiff("d", utcCheckInDate, utcCheckOutDate, 2);
		if (utcDateDiff > 0) {
			utcNewCheckOutDate = dateAdd("d", parseInt(document.getElementById('Nights').value), utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
		} else {
			utcNewCheckOutDate = dateAdd("d", 1, utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
			document.getElementById('Nights').value = 1;
		}
						
		var arrivalDate = new Date(document.getElementById('CheckInDate').value.substring(6,10), document.getElementById('CheckInDate').value.substring(3,5), document.getElementById('CheckInDate').value.substring(0,2)); 
		document.getElementById('arrivalDay').value = arrivalDate.getDate(); 
		document.getElementById('arrivalMonthYear').value = arrivalDate.getFullYear().toString() + formatDate(arrivalDate.getMonth()-1).toString();
	
		var departureDate = new Date(document.getElementById('CheckInDate').value.substring(6,10), document.getElementById('CheckInDate').value.substring(3,5), parseInt(document.getElementById('CheckInDate').value.substring(0,2)) + parseInt(document.getElementById('Nights').value)); 
		document.getElementById('departureDay').value = departureDate.getDate(); 
		document.getElementById('departureMonthYear').value = departureDate.getFullYear().toString() + formatDate(departureDate.getMonth()-1).toString();
	}
	
	function UpdateNights(){
		utcCheckInDateTab = document.getElementById('CheckInDate').value.split("/");
		utcCheckOutDateTab = document.getElementById('CheckOutDate').value.split("/");
		utcCheckInDate = utcCheckInDateTab[1] + "/" + utcCheckInDateTab[0] + "/" + utcCheckInDateTab[2];
		utcCheckOutDate = utcCheckOutDateTab[1] + "/" + utcCheckOutDateTab[0] + "/" + utcCheckOutDateTab[2];
		utcDateDiff = dateDiff("d", utcCheckInDate, utcCheckOutDate, 2);
		if (utcDateDiff > 0) {
			document.getElementById('Nights').value = utcDateDiff; 
		} else { 
			document.getElementById('Nights').value = 1;
			utcNewCheckOutDate = dateAdd("d", 1, utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
		}
		
		var arrivalDate = new Date(document.getElementById('CheckInDate').value.substring(6,10), document.getElementById('CheckInDate').value.substring(3,5), document.getElementById('CheckInDate').value.substring(0,2)); 
		document.getElementById('arrivalDay').value = arrivalDate.getDate(); 
		document.getElementById('arrivalMonthYear').value = arrivalDate.getFullYear().toString() + formatDate(arrivalDate.getMonth()-1).toString();
	
		var departureDate = new Date(document.getElementById('CheckInDate').value.substring(6,10), document.getElementById('CheckInDate').value.substring(3,5), parseInt(document.getElementById('CheckInDate').value.substring(0,2)) + parseInt(document.getElementById('Nights').value)); 
		document.getElementById('departureDay').value = departureDate.getDate(); 
		document.getElementById('departureMonthYear').value = departureDate.getFullYear().toString() + formatDate(departureDate.getMonth()-1).toString();
	}
	
	<!-- DATE -->
	function IsDate(p_Expression){
		return !isNaN(new Date(p_Expression));		// <-- review further
	}
	
	function CDate(p_Date){
		if(IsDate(p_Date)){ return new Date(p_Date); }
	
		var strTry = p_Date.replace(/\-/g, '/').replace(/\./g, '/').replace(/ /g, '/');	// fix separators
		strTry = strTry.replace(/pm$/i, " pm").replace(/am$/i, " am");	// and meridian spacing
		if(IsDate(strTry)){ return new Date(strTry); }
	
		var strTryYear = strTry + '/' + new Date().getFullYear();	// append year
		if(IsDate(strTryYear)){ return new Date(strTryYear); }
		
	
		if(strTry.indexOf(":")){	// if appears to have time
			var strTryYear2 = strTry.replace(/ /, '/' + new Date().getFullYear() + ' ');	// insert year
			if(IsDate(strTryYear2)){ return new Date(strTryYear2); }
	
			var strTryDate = new Date().toDateString() + ' ' + p_Date;	// pre-pend current date
			if(IsDate(strTryDate)){ return new Date(strTryDate); }
		}
		
		return false;	// double as looser IsDate
		//throw("Error #13 - Type mismatch");	// or is this better? 
	}
	
	function dateAdd(p_Interval, p_Number, p_Date){
		if(!CDate(p_Date)){	return "invalid date: '" + p_Date + "'";	}
		if(isNaN(p_Number)){	return "invalid number: '" + p_Number + "'";	}	
		p_Number = new Number(p_Number);
		var dt = CDate(p_Date);
		switch(p_Interval.toLowerCase()){
			case "yyyy": {
				dt.setFullYear(dt.getFullYear() + p_Number);
				break;
			}
			case "q": {
				dt.setMonth(dt.getMonth() + (p_Number*3));
				break;
			}
			case "m": {
				dt.setMonth(dt.getMonth() + p_Number);
				break;
			}
			case "y":			// day of year
			case "d":			// day
			case "w": {		// weekday
				dt.setDate(dt.getDate() + p_Number);
				break;
			}
			case "ww": {	// week of year
				dt.setDate(dt.getDate() + (p_Number*7));
				break;
			}
			case "h": {
				dt.setHours(dt.getHours() + p_Number);
				break;
			}
			case "n": {		// minute
				dt.setMinutes(dt.getMinutes() + p_Number);
				break;
			}
			case "s": {
				dt.setSeconds(dt.getSeconds() + p_Number);
				break;
			}
			case "ms": {	// JS extension
				dt.setMilliseconds(dt.getMilliseconds() + p_Number);
				break;
			}
			default: {
				return "invalid interval: '" + p_Interval + "'";
			}
		}
		return dt;
	}
	
	function dateDiff(p_Interval, p_Date1, p_Date2, p_FirstDayOfWeek){
		if(!CDate(p_Date1)){	return "invalid date: '" + p_Date1 + "'";	}
		if(!CDate(p_Date2)){	return "invalid date: '" + p_Date2 + "'";	}
		p_FirstDayOfWeek = (isNaN(p_FirstDayOfWeek) || p_FirstDayOfWeek==0) ? vbSunday : parseInt(p_FirstDayOfWeek);	// set default & cast
	
		var dt1 = CDate(p_Date1);
		var dt2 = CDate(p_Date2);
	
		// correct DST-affected intervals ("d" & bigger)
		if("h,n,s,ms".indexOf(p_Interval.toLowerCase())==-1){
			if(p_Date1.toString().indexOf(":") ==-1){ dt1.setUTCHours(0,0,0,0) };	// no time, assume 12am
			if(p_Date2.toString().indexOf(":") ==-1){ dt2.setUTCHours(0,0,0,0) };	// no time, assume 12am
		}
		// get ms between UTC dates and make into "difference" date
		var iDiffMS = dt2.valueOf() - dt1.valueOf();
		var dtDiff = new Date(iDiffMS);
	
		// calc various diffs
		var nYears  = dt2.getUTCFullYear() - dt1.getUTCFullYear();
		var nMonths = dt2.getUTCMonth() - dt1.getUTCMonth() + (nYears!=0 ? nYears*12 : 0);
		var nQuarters = parseInt(nMonths / 3);	//<<-- different than VBScript, which watches rollover not completion
		
		var nMilliseconds = iDiffMS;
		var nSeconds = parseInt(iDiffMS / 1000);
		var nMinutes = parseInt(nSeconds / 60);
		var nHours = parseInt(nMinutes / 60);
		var nDays  = parseInt(nHours / 24);	
		var nWeeks = parseInt(nDays / 7);
	
		if(p_Interval.toLowerCase()=='ww'){
				// set dates to 1st & last FirstDayOfWeek
				var offset = DatePart("w", dt1, p_FirstDayOfWeek)-1;
				if(offset){	dt1.setDate(dt1.getDate() +7 -offset);	}
				var offset = DatePart("w", dt2, p_FirstDayOfWeek)-1;
				if(offset){	dt2.setDate(dt2.getDate() -offset);	}
				// recurse to "w" with adjusted dates
				var nCalWeeks = DateDiff("w", dt1, dt2) + 1;
		}
		
		// return difference
		switch(p_Interval.toLowerCase()){
			case "yyyy": return nYears;
			case "q": return nQuarters;
			case "m":	return nMonths;
			case "y":			// day of year
			case "d": return nDays;
			case "w": return nWeeks;
			case "ww":return nCalWeeks; // week of year	
			case "h": return nHours;
			case "n": return nMinutes;
			case "s": return nSeconds;
			case "ms":return nMilliseconds;	// not in VBScript
			default : return "invalid interval: '" + p_Interval + "'";
		}
	}
	
	function DatePart(p_Interval, p_Date, p_FirstDayOfWeek){
		if(!CDate(p_Date)){	return "invalid date: '" + p_Date + "'";	}
	
		var dtPart = CDate(p_Date);
		
		switch(p_Interval.toLowerCase()){
			case "yyyy": return dtPart.getFullYear();
			case "q": return parseInt(dtPart.getMonth() / 3) + 1;
			case "m": return dtPart.getMonth() + 1;
			case "y": return DateDiff("y", "1/1/" + dtPart.getFullYear(), dtPart) + 1;	// day of year
			case "d": return dtPart.getDate();
			case "w": return ''; //Weekday(dtPart.getDay()+1, p_FirstDayOfWeek);		// weekday
			case "ww":return DateDiff("ww", "1/1/" + dtPart.getFullYear(), dtPart, p_FirstDayOfWeek) + 1;	// week of year
			case "h": return dtPart.getHours();
			case "n": return dtPart.getMinutes();
			case "s": return dtPart.getSeconds();
			case "ms":return dtPart.getMilliseconds();	// <-- JS extension, NOT in VBScript
			default : return "invalid interval: '" + p_Interval + "'";
		}
	}
	
	
	function formatDate(var_to_format){
		if (parseInt(var_to_format) < 10 ) {
			return "0"+var_to_format;
		} else {
			return var_to_format;
		}
	}
	
	
/* ]]> */
</script>


<!--Carousel-->
<script type="text/javascript">
$(document).ready(function() {
	$.fn.infiniteCarousel = function () {

		function repeat(str, num) {
			return new Array( num + 1 ).join( str );
		}
	  
		return this.each(function () {
			var $wrapper = $('> div', this).css('overflow', 'hidden'),
				$slider = $wrapper.find('> ul'),
				$items = $slider.find('> li'),
				$single = $items.filter(':first'),
				
				singleWidth = $single.outerWidth(), 
				visible = Math.ceil($wrapper.innerWidth() / singleWidth),
				currentPage = 1,
				pages = Math.ceil($items.length / visible);            
	
			if (($items.length % visible) != 0) {
				$slider.append(repeat('<li class="empty" />', visible - ($items.length % visible)));
				$items = $slider.find('> li');
			}
	
			$items.filter(':first').before($items.slice(- visible).clone().addClass('cloned'));
			$items.filter(':last').after($items.slice(0, visible).clone().addClass('cloned'));
			$items = $slider.find('> li');
			
			$wrapper.scrollLeft(singleWidth * visible);
			
			function gotoPage(page) {
				var dir = page < currentPage ? -1 : 1,
					n = Math.abs(currentPage - page),
					left = singleWidth * dir * visible * n;
				
				$wrapper.filter(':not(:animated)').animate({
					scrollLeft : '+=' + left
				}, 565, function () {
					if (page == 0) {
						$wrapper.scrollLeft(singleWidth * visible * pages);
						page = pages;
					} else if (page > pages) {
						$wrapper.scrollLeft(singleWidth * visible);
						page = 1;
					} 
	
					currentPage = page;
				});                
				
				return false;
			}
			
			$wrapper.after('<a class="arrow back">&lt;</a><a class="arrow forward">&gt;</a>');
			
			$('a.back', this).click(function () {
				return gotoPage(currentPage - 1);                
			});
			
			$('a.forward', this).click(function () {
				return gotoPage(currentPage + 1);
			});
			
			$(this).bind('goto', function (event, page) {
				gotoPage(page);
			});
		});  
	};
});
	$(document).ready(function () {
	  $('.infiniteCarousel').infiniteCarousel();
	});
</script>

 <!-- COLOR BOX -->
<script type="text/javascript">
	$(document).ready(function(){
		$("a[rel='gallery']").colorbox({transition:"fade", slideshow: true, slideshowAuto: true});
		$("a[rel='contact']").colorbox({iframe:true, width:'666px',height:'450px'});		
		$(".motor").colorbox({rel: 'nofollow', iframe: true, width: '1050px', height:'95%', overlayClose:false});
	});
</script>

<!-- INNER FADE -->

<script type="text/javascript">
	$(document).ready(function(){
		$("#index ul#slide, #promotions ul#slide").append("<li><img src='http://www.hotelesdante.com/img/HotelesDante-TossaDeMar.jpg' /></li><li><img src='http://www.hotelesdante.com/img/HotelesDante-LaPedrera-Barcelona.jpg' /></li><li><img src='http://www.hotelesdante.com/img/HotelesDante-TossaDeMar2.jpg' /></li>");
		$("#interior ul#slide").append("<li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/9279975522_hoteldiana-hotel01.jpg' alt='hoteldiana hotel01' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/9377634991_suite.jpg' alt='suite' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/9377654027_dianaterraza.jpg' alt='dianaterraza' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/9377655924_dianapatioint.jpg' alt='dianapatioint' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/9377635068_diplaza.jpg' alt='diplaza' /></li>");
		$('ul#slide').innerfade({
			speed: 1000,
			timeout: 5000,
			type: 'sequence'
		});
	});
</script>

<!-- ACCORDION -->
<script type="text/javascript">
	$(document).ready(function() {
		$("#accordion0").accordion({ autoHeight: true});
		$("#accordion1").accordion({ autoHeight: true});
		$("#accordion2").accordion({ autoHeight: true});
		$("#accordion3").accordion({ autoHeight: true});
		$("#accordion4").accordion({ autoHeight: true});
		$("#accordion5").accordion({ autoHeight: true});
	});
</script>

<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-4465182-2']);
  _gaq.push(['_setDomainName', 'hotelesdante.com']);
  _gaq.push(['_trackPageview']);
  
  _gaq.push(function() {
	  var pageTracker = _gat._getTrackerByName();
	  var iframe = document.getElementById('cboxIframe');
	  iframe.src = pageTracker._getLinkerUrl('https://www.rolinesystem.com/');
  });

  (function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>


<!--ALERT-->
<script type="text/javascript" language="javascript">
$(document).ready(function() {
	
	maxHeight = 0; 
	$('#alerts li').each(function(index) {
		if(maxHeight < $(this).height()) maxHeight = $(this).height();
	 });
	if(navigator.appName == 'Microsoft Internet Explorer') maxHeight = maxHeight - 20;
	$('#alerts').innerfade({ animationtype: 'fade', speed: 'slow', timeout: 5000, type: 'sequence' }); 
	$('#alerts').css('position', '');
	$('.alert').css('height', maxHeight + 'px'); //jQuery('#alerts li').height());
		
	$('#close').click( function (){
		$('.alert').hide();
	});
});
</script>
    
</head>    

<body id="index">

    <div id="wrapper">
        <!--form name="ChangePage" method="post" action="interior.asp" >		
            
            
                    <input type="hidden" name="IdWebsite" value="11">
                
                    <input type="hidden" name="urlRule1" value="hotel-diana-tossa-de-mar">
                
                    <input type="hidden" name="urlRule2" value="0">
                
                    <input type="hidden" name="LC" value="en">
                
                <input type="hidden" name="idioma" value="es">
            
                <input type="hidden" name="IdHotel" value="243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325" />
            
                <input type="hidden" name="IdMenu" value="97" />
            
                <input type="hidden" name="IdSubMenu" value="" />
            
        </form-->
        
        <ul id="lang">
            <li><a href="http://www.hotelesdante.com/es" id="espanol" title="Español"><span>Español</span></a></li>
            <li><a href="http://www.hotelesdante.com/en" id="english" title="English"><span>English</span></a></li>
            <li><a href="http://www.hotelesdante.com/fr" id="francais" title="Français"><span>Français</span></a></li>
            <li><a href="http://www.hotelesdante.com/it" id="italiano" title="Italiano"><span>Italiano</span></a></li>
            <li><a href="http://www.hotelesdante.com/al" id="deutsch" title="Deutsch"><span>Deutsch</span></a></li>
            <li><a href="http://www.hotelesdante.com/ca" id="catala" title="Català"><span>Català</span></a></li>
            <li><a href="http://www.hotelesdante.com/ru" id="ruso" title="&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;"><span>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;</span></a></li>
        </ul>
        
        <div id="header">
        	<div id="bestPrice" style="position:absolute; z-index:99; top:-5px; left:-5px;"><img src="img/bestprice_es.png" /></div>
            <div id="flash">
            	
                	<div class="alert">
                		<a id="close"></a>               	
                        <ul id="alerts">
                            
                            	<li><p style="text-align: justify;"><span id="__end"><span id="__end"><span style="background-color: #ffffff;"><span style="color: #000000;"><span style="font-size: small;"><strong></strong></span></span></span></span></span><span style="color: #008080; font-size: medium;"><span style="font-family: book antiqua,palatino;"><em><strong>¡Reserva ahora en Tossa de Mar y te obsequiaremos con una <strong>botella de cava</strong>!</strong></em></span></span></p>
<p style="text-align: justify;"><br /><span style="color: #008080;"><span style="font-family: book antiqua,palatino;"><span style="font-size: small;"><em><strong></strong></em></span></span></span></p>
<p style="text-align: justify;"><span style="color: #008080;"><span style="font-family: book antiqua,palatino;"><span style="font-size: small;"><em><strong><br /></strong></em></span></span></span></p></li>
                            
                            	<li><a target="_blank" title="Tossa de Mar" href="http://travel.nationalgeographic.com/travel/best-trips-2012/costa-brava-spain-photos/"><img style="vertical-align: middle;" title="Hotel Delfín Tossa de Mar" alt="Hotel Delfín Tossa de Mar" src="https://www.rolinesystem.com/v6/upload/img_gallery/9847435034_national_geographic_mail-mini.gif" height="52" width="251" /></a></li>
                            
                        </ul>
                    </div>
              	
                <ul id="slide"></ul>
            </div>
            <div id="RolineForm">
            	
                <form id="bookRoline" name="bookRoline" method="post" action="http://www.bestwestern.es/reserve.aspx" target="_blank" >
                	<!-- RolineSystem -->
                    <input type="hidden" name="LC" id="LC" value="es" />
                    
                    <!-- BestWestern -->
                    
                        <input name="language" value="es_ES" type="hidden">
                    
                    <input name="reset" value="true" type="hidden">
                    <input name="sob" value="A13" type="hidden">
                    <input name="countryCode" value="ES" type="hidden">
                    <input name="disablenav" value="true" type="hidden">
                    <input name="suppressSSLPopup" value="true" type="hidden">
                    <input name="notAffiliate" value="false" type="hidden">
                    <input name="city" value="Barcelona" type="hidden">
                    <input name="propertyCode" value="92097" type="hidden">
                    
                    <input type="hidden" name="lang" value="es-ES" />
                    <input type="hidden" name="motor" value="corporativa" />
                    <input type="hidden" name="hotel" value="92097" />
                    <input type="hidden" name="corporativa" value="92097" />
                    
                    <input name="arrivalDay" id="arrivalDay" value="23" type="hidden">
                    <input name="arrivalMonthYear" id="arrivalMonthYear" value="201202" type="hidden">
                    <input name="departureDay" id="departureDay" value="24" type="hidden">
                    <input name="departureMonthYear" id="departureMonthYear" value="201202" type="hidden">
                    
                    
                    <div id="logo" onclick="Javascript: document.location.href = 'http://www.hotelesdante.com/';"><span>Dante Hoteles</span></div>
                    <h3>Haz tu Reserva Online</h3>
                    <p>Te esperamos para visitar Barcelona o para Descubrir la Costa Brava...</p>
                    <ul>
                        <li id="destiny">
                            <label>Destino</label>
                            <select name="IdHotel" id="IdHotel">
                                <optgroup label="Tossa de Mar">
                                    <option value="97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb" >Hotel Delf&iacute;n</option>
                                    <option value="243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325"  selected="selected" >Hotel Diana</option>
                                    <!--option value="4611f62d96fe65e70e61669582c675a355fc73c4688921a7f6a8d3f21e044646" >Hotel Marina Tossa</option>
                                    <option value="650c4207463320b02d7603e060556735f37ea9f095de9ded684594c727f221e0" >Hotel Windsor</option-->
                                </optgroup>
                                <optgroup label="Barcelona">
                                    <option value="0" >Best Western Premier Hotel Dante</option>
                                </optgroup>
                            </select>
                        </li>
                        <li id="checkin">
                            <label>Fecha de Llegada</label>
                            <input type="text" name="CheckInDate" id="CheckInDate" class="m"  onchange="Javascript: UpdateCheckOutDate();" value="23/02/2012" />
                        </li>
                        <li id="checkout">
                        	<label>Fecha de Salida</label>
                			<input type="text" name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="24/02/2012" />
                        </li>
                        <li style="float:none; clear:both;">
                            <label>Noches</label>
                            <input type="text" name="Nights" id="Nights" class="s"  value="1" onchange="Javascript: UpdateCheckOutDate();" />
                        </li>
                        <!--li id="adults">
                            <label>Adultos</label>
                            <input type="text" name="Adults" class="s" value="2"/>
                        </li>
                        <li>
                            <label>Ni&#241;os</label>
                            <input type="text" name="Children" class="s" value="0"/>
                        </li-->
                        <li id="btn_book">
                            <a href="#" onclick="Javascript: if(document.getElementById('IdHotel').value.toString() != '0') { $.fn.colorbox({href:'https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel='+document.getElementById('IdHotel').value+'&LC='+document.getElementById('LC').value+'&CheckInDate='+document.getElementById('CheckInDate').value+'&Nights='+document.getElementById('Nights').value, iframe: true, width: '1050px', height: '95%', overlayClose:false}); } else { document.getElementById('bookRoline').submit(); } return false; " class="button">Reserva &raquo;</a>
                        </li>
                    </ul>
                </form>
            </div>
        </div>

<script type="text/javascript"> document.body.id = 'interior';</script>

<!--div id="hotel_logo">
	<a href="http://www.hotelesdante.com/es/Inicio" id="group"><span>Hoteles Dante</span></a>
	
		<img src="img/diana.png" />
	
</div-->	


    
    <ul id="nav_interior">
    	
        	<li><a href="http://www.hotelesdante.com/">Inicio</a></li>
        
        		<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar" title="Hotel Diana"  class="current" >Hotel Diana</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/habitaciones" title="Habitaciones" >Habitaciones</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/restaurante" title="Restaurante" >Restaurante</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/como-llegar" title="Como llegar" >Como llegar</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/eventos" title="Eventos" >Eventos</a></li>   
				
        	<li><a href="http://www.hotelesdante.com/es/ofertas-hotel-diana-tossa-de-mar" title="Promociones"  >Promociones</a></li>
        	<li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/contacto" title="Contacto - Hotel Diana - Tossa de Mar" rel="contact">Contacto</a></li>
        
    </ul>


<div id="content">
	<h1>Hotel Diana
    	<div id="wifi">
			
                <img src="img/free-wifi.png"/>
            
        </div>
    </h1>
	<div class="left">
    	
			<div class="infiniteCarousel">
				<div class="wrapper">
					<ul>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512107575_castillo_noche-min.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512107575_castillo_noche-min.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512103163_diosa_diana_ok.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512103163_diosa_diana_ok.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512092876__dsc5012.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512092876__dsc5012.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512090922_vidrera.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9512090922_vidrera.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/95120899410__dsc5164.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/95120899410__dsc5164.jpg'></a></li>
						<li></li>
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110377_balcon_suite.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110377_balcon_suite.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110366_diana_terraza_playa_red.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110366_diana_terraza_playa_red.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110353_diana_patio_red.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110353_diana_patio_red.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110302_diana_patio_2_red.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9355110302_diana_patio_2_red.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943548__dsc5217.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943548__dsc5217.jpg'></a></li>
						<li></li>
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943284__dsc5191.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943284__dsc5191.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943232__dsc5187.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943232__dsc5187.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943153__dsc5182.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348943153__dsc5182.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348942711__dsc5022.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348942711__dsc5022.jpg'></a></li>
						
							<li><a href='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348942669__dsc5018.jpg' rel='gallery'><img width='330' src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu97/SubMenu189/9348942669__dsc5018.jpg'></a></li>
						
					 </ul>
				</div>
		   </div>
		
		<div id="text">
			<p><span style="font-size: small;"><span style="font-family: verdana,geneva;">El <strong>Hotel  Diana</strong> es un emblemático hotel boutique modernista <strong>ubicado a pie de playa</strong> dentro del <strong>centro histórico de Tossa de Mar</strong>. Posee un emplazamiento privilegiado desde el que se puede disfrutar de las mejores vistas del mar, la playa y el casco antiguo de Tossa de Mar.</span></span></p>
<p><span style="font-size: small;"><span style="font-family: verdana,geneva;">La arquitectura y la situación del Hotel Diana hacen de las estancias una experiencia inolvidable. El Hotel Diana reúne los requisitos esenciales para que los huéspedes disfruten al máximo de unas vacaciones en la Costa Brava.</span></span></p>
<p><span style="font-size: small;"><span style="font-family: verdana,geneva;">El hotel es <strong>un edificio modernista con más de 100 años de historia</strong> construido por <strong>Antoni de Falguera i Sivilla</strong>, discípulo y colaborador de Antoni Gaudí. Está <strong>protegido como edificio singular por el Ayuntamiento de Tossa de Mar</strong>. La decoración y las instalaciones conservan el carácter modernista y han sido adaptadas para que los huéspedes disfruten de un mayor confort durante su estancia.</span></span></p>
<p><span style="font-size: small;"><span style="font-family: verdana,geneva;">El Hotel Diana dispone de salones para reuniones de empresa, celebraciones familiares o cualquier tipo de evento en un emplazamiento sin igual. Los clientes pueden disponer también de una impresionante terraza frente al mar para celebrar todo tipo de eventos. Sus especiales características lo convierten, sin duda, en uno de los mejores lugares para celebrar un <a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar/eventos">evento en Tossa de Mar</a>.</span></span></p>
<p><span style="font-size: small;"><span style="font-family: verdana,geneva;">El Hotel Diana no dispone de parking en el mismo hotel, sin embargo, pone a disposición de sus clientes un garaje cubierto a tan solo 100 metros del hotel además del parking cerrado del Hotel Marina Tossa, que se encuentra a 800 metros. <br /></span></span></p>
<p></p>
<p><span style="font-size: small;"><span style="font-family: verdana,geneva;"><img style="float: right;" title="Hotel Delfín Tossa de Mar" alt="Hotel Delfín Tossa de Mar" src="https://www.rolinesystem.com/v6/upload/img_gallery/9847435034_national_geographic_mail-mini.gif" height="52" width="251" /></span></span></p>
		</div>
	</div>
	<div class="right">
		
				  <div id="titulo">Promociones</div>
				  <div id="accordion5" class="accordion">
					  
						  <h2><a href="#">Reserva ahora y te invitamos a una botella de cava</a></h2>
						  <div>
								
									  <img src="https://www.rolinesystem.com/v6/upload/img_promotions/e59cf2ea26_9540770866_cava.jpg"/>
								¡Solamente si reservas en nuestra página web, además de conseguir el mejor precio, te invitamos a una botella de cava en tu primera noche!
									<a href="http://www.hotelesdante.com/es/ofertas-hotel-diana-tossa-de-mar/cava-gratis">[+]&nbsp;ver detalles</a>
								
							  
						  </div>
					  
						  <h2><a href="#">Descuento por reserva anticipada</a></h2>
						  <div>
								
									  <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9535744884_10-discount.png"/>
								<p><span style="font-size: x-small;"><span style="font-family: verdana,geneva;">En Hoteles Dante ofrecemos un 10% de descuento en exclusiva a los clientes que reserven sus vacaciones con antelación.<em> * Se cargará el importe total en el momento de efectuar la reserva y no es cancelable ni reembolsable.</em></span></span></p>
									<a href="http://www.hotelesdante.com/es/ofertas-hotel-diana-tossa-de-mar/descuento-por-reserva-anticipada">[+]&nbsp;ver detalles</a>
								
							  
						  </div>
					  
				  </div>
			
			<div id="social">
				
                    <a href="http://www.facebook.com/home.php?#!/pages/Tossa-Spain/HOTEL-DIANA/95407745172" class="facebook" target="_blank">S&#237;guenos en</a>
                
			</div>
		
            <script language="javascript">

				function BuenMail (string){
					var at="@";
					var dot=".";
					var lat=string.indexOf(at);
					var lstr=string.length;
					var ldot=string.indexOf(dot);
					if (string.indexOf(at)==-1) return false;
					if (string.indexOf(at)==-1 || string.indexOf(at)==0 || string.indexOf(at)==lstr) return false;
					if (string.indexOf(dot)==-1 || string.indexOf(dot)==0 || string.indexOf(dot)==lstr) return false;
					if (string.indexOf(at,(lat+1))!=-1) return false;
					if (string.substring(lat-1,lat)==dot || string.substring(lat+1,lat+2)==dot) return false;
					if (string.indexOf(dot,(lat+2))==-1) return false;
					if (string.indexOf(" ")!=-1) return false;
					
					return true;	
				}
				
				function Validate(){
					if (document.getElementById('nombre').value.length < 1){
						alert("Por favor, rellene todos los campos");
						document.getElementById('nombre').focus();
						return false;
					}
					if (document.getElementById('email').value.length < 1){
						alert("Por favor, rellene todos los campos");
						document.getElementById('email').focus();
						return false;
					}
					// E-mail
					if (!BuenMail(document.getElementById('email').value)){
						alert("Email Incorrecto!");
						document.getElementById('email').focus();
						return false;
					}
					if (document.getElementById('comentarios').value.length < 1){
						alert("Por favor, rellene todos los campos");
						document.getElementById('comentarios').focus();
						return false;
					}
					return true;
				}

				function SubmitForm(ProcessURL, FormElements, DivResult){
					var QueryString = "";
					for(var i=0;i<(FormElements.length);i++)
					{
						QueryString += FormElements[i].name + "=" + escape(FormElements[i].value) + "&";
					} 
					
					jQuery.post(ProcessURL, QueryString, function(theResponse){
						jQuery(DivResult).html(theResponse);
					}); 
					
					return false;
				}

			</script>
            
         
			<!--
            	
                <div id="FeedBackForm">
                    <div class="title">Opiniones</div>
                    <ul id="feedBack"> 
                        
                            <li>
                                <ul>
                                    
                                        <li class="comment">&ldquo;La tranquilidad, las vistas desde la habitaci&#243;n al mar y al castillo viendo la puesta de sol, la terraza desde la que puedes contemplar la playa..&rdquo;</li>
                                        <li class="author">&mdash; Mònica</li>
                                    
                                </ul>
                            </li>   
                        
                            <li>
                                <ul>
                                    
                                        <li class="comment">&ldquo;&#161;Una habitaci&#243;n con vistas inolvidable!&rdquo;</li>
                                        <li class="author">&mdash; Anna</li>
                                    
                                </ul>
                            </li>   
                        
                            <li>
                                <ul>
                                    
                                        <li class="comment">&ldquo;Gente maja y servicial. Pedidle consejo para cenar al recepcionista. A mi me recomend&#243; un restaurante de un aprendiz de Adri&#224;, y por un precio razonable (40&#8364; con cava rosado) me puse ciego a comer .. cocina moderna con platos peque&#241;os, pero muchos.
Situaci&#243;n excepcional, del hotel a la playa ... coges tu toalla y al agua.
En resumen ... un sitio ideal.&rdquo;</li>
                                        <li class="author">&mdash; Tripadvisor</li>
                                    
                                </ul>
                            </li>   
                        
                    </ul>
                    <form name="FeedBack" id="FeedBack">
                        <input type="hidden" name="IdHotel" value="243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325" />
                        <ul>
                            <li>    
                                <label>Nombre</label>
                                <input name="nombre" type="text" class="inputs" id="nombre" size="30" maxlength="100" />
                            </li>
                            <lI>
                                <label>Apellidos</label>
                                <input name="apellido" type="text" class="inputs" id="apellido" size="30" maxlength="100" />
                            </li>
                            <li>
                                <label>Email</label>
                                <input name="email" type="text" class="inputs" id="email" size="30" maxlength="100" />
                            </li>
                            <li>
                                <label>Comentarios</label>
                                <textarea name="comentarios" cols="28" rows="3" class="inputs" id="comentarios"></textarea>
                            </li>
                            <li>
                                <input name="button2" type="button" class="button" id="button2" value="Enviar" onclick="Javascript: if (Validate()) {SubmitForm('includes/send_email.asp', document.getElementById('FeedBack').elements, '#FeedBackForm'); }" />
                            </li>
                        </ul>
                    </form>
                 </div>
              -->
              
	</div>
</div>

<div id="footer">
    	<ul>
        	<li><h2>Hoteles Dante</h2>
            	<ul>
                	<li><a href="http://www.hotelesdante.com/es/hotel-delfin-tossa-de-mar" title="Hotel Delfín - Tossa de Mar">Hotel Delf&iacute;n ****</a></li>
                    <li><a href="http://www.hotelesdante.com/es/hotel-diana-tossa-de-mar" title="Hotel Diana - Tossa de Mar">Hotel Diana</a></li>
                	<li style="width:225px;"><a href="http://www.hotelesdante.com/es/best-western-premier-hotel-dante-barcelona" title="Best Western Premier Hotel Dante - Barcelona">Best Western Premier Hotel Dante ****</a></li>
                    <!--li><a href="http://www.hotelesdante.com/es/hotel-marina-tossa-de-mar" title="Hotel Marina Tossa - Tossa de Mar">Hotel Marina Tossa *</a></li>
                    <li><a href="http://www.hotelesdante.com/es/hotel-windsor-tossa-de-mar" title="Hotel Windsor - Tossa de Mar">Hotel Windsor *</a></li-->
                </ul>
          	</li>
            <li><h2>Otros hoteles</h2>
            	<ul>
                    <li><a href="http://www.hotelmarinatossa.es/" title="Hotel Marina Tossa - Tossa de Mar">Hotel Marina Tossa *</a></li>
                    <li><a href="http://www.hotelwindsortossa.es/" title="Hotel Windsor - Tossa de Mar">Hotel Windsor *</a></li>
                </ul>
          	</li>
            <li style="padding-left:40px; width:175px;"><div class="title">M&#225;s informaci&#243;n</div>
            	<ul>
                	<li style="width:175px;"><a href="http://www.hotelesdante.com/tossademar">Tossa de Mar</a></li>
            		<li style="width:175px;"><a href="">Enlaces</a></li>
               	</ul>
           	</li>
            <li><div class="title">Oficinas Centrales Hoteles Dante</div>
            	<ul class="address">
                    <li>Mallorca 181, 08036 Barcelona</li>
                    <li>T. +34.93.323.22.54</li>
                    <li>F. +34.93.323.22.54</li>
                    <li><a href="mailto:comercial@hotelesdante.com">comercial@hotelesdante.com</a></li>
                </ul>
            </li>
        </ul>
    	
    </div>
    <div id="forisur"><i>Desarrollado por <a target="_blank" title="RolineSystem | motores de reservas, tiendas online &amp; web marketing" href="http://www.rolinesystem.com">Roline System</a></div>
    
    
</div>

</body>
</html>

