
<!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="en" />
        <meta name="title" content="Hotel Diana Tossa de Mar" />
        <meta name="description" content="Hotel Diana is located opposite Tossa de Mar beach. In a unique Modernist building, listed by the Tossa de Mar Town Council." />
        <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="en" 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-en.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['en']));
		$("#CheckOutDate").datepicker($.extend({minDate: 1}, $.datepicker.regional['en']));
		$("#CheckInDateBestWestern").datepicker($.datepicker.regional['en']);
	});
	
	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="it">
                
                <input type="hidden" name="idioma" value="en">
            
                <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_en.png" /></div>
            <div id="flash">
            	
                	<div class="alert">
                		<a id="close"></a>               	
                        <ul id="alerts">
                            
                            	<li><p><span style="font-size: medium; font-family: book antiqua,palatino;"><em><strong><span style="color: #008080;">Book now in Tossa de Mar and we invite you to a bottle of cava!</span></strong></em></span></p>
<p><em><strong><span style="color: #008080;"><span style="font-size: small;"><span style="font-family: times new roman,times;"><br /></span></span></span></strong></em></p></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="en" />
                    
                    <!-- BestWestern -->
                    
                        <input name="language" value="en_US" 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="18" type="hidden">
                    <input name="arrivalMonthYear" id="arrivalMonthYear" value="201205" type="hidden">
                    <input name="departureDay" id="departureDay" value="19" type="hidden">
                    <input name="departureMonthYear" id="departureMonthYear" value="201205" type="hidden">
                    
                    
                    <div id="logo" onclick="Javascript: document.location.href = 'http://www.hotelesdante.com/en';"><span>Dante Hoteles</span></div>
                    <h3>Book Online</h3>
                    <p>We wait for you to visit Barcelona or To discover the Costa Brava...</p>
                    <ul>
                        <li id="destiny">
                            <label>Destination</label>
                            <select name="IdHotel" id="IdHotel">
                                <optgroup label="Tossa de Mar">
                                    <option value="97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb" >Hotel Delf&iacute;n</option>
                                    <option value="243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325" >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>Check-in date</label>
                            <input type="text" name="CheckInDate" id="CheckInDate" class="m"  onchange="Javascript: UpdateCheckOutDate();" value="18/05/2012" />
                        </li>
                        <li id="checkout">
                        	<label>Check-out date</label>
                			<input type="text" name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="19/05/2012" />
                        </li>
                        <li style="float:none; clear:both;">
                            <label>Nights</label>
                            <input type="text" name="Nights" id="Nights" class="s"  value="1" onchange="Javascript: UpdateCheckOutDate();" />
                        </li>
                        <!--li id="adults">
                            <label>Adults</label>
                            <input type="text" name="Adults" class="s" value="2"/>
                        </li>
                        <li>
                            <label>Children</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">Book &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/en/Home" id="group"><span>Hoteles Dante</span></a>
	
		<img src="img/diana.png" />
	
</div-->	


    
    <ul id="nav_interior">
    	
        	<li><a href="http://www.hotelesdante.com/en">Home</a></li>
        
        		<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar" title="Hotel Diana"  class="current" >Hotel Diana</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar/rooms" title="Rooms" >Rooms</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar/restaurant" title="Restaurant" >Restaurant</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar/location" title="Location" >Location</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar/events" title="Events" >Events</a></li>   
				
        	<li><a href="http://www.hotelesdante.com/en/promotions-hotel-diana-tossa-de-mar" title="Offers"  >Offers</a></li>
        	<li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar/contact" title="Contact - Hotel Diana - Tossa de Mar" rel="contact">Contact</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-family: verdana,geneva;"><span style="font-size: small;"><strong>Hotel Diana</strong> is an emblematic <strong>modernist boutique hotel located on the </strong><strong>beachfront</strong> in the<strong> historical centre of Tossa de Mar</strong>.  It has a privileged location offering the best views of the sea, the beach and of the Old Town in Tossa de Mar. located on the </span></span></p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">The architecture and location of Hotel Diana will make your stay an <strong>unforgettable experience</strong>. Hotel Diana offers all the essential requirements for guests to make the most of their holidays on the Costa Brava.</span></span></p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">The hotel is a modernist building with over <strong>100 years of history </strong>and built by Antoni de Falguera i Sivilla, disciple and collaborator of Antoni Gaudí.  It is listed as a <strong>unique building</strong> by the Tossa de Mar Town Council. The décor and installations have preserved the building’s modernist character while at the same time they have been adapted for the comfort of guests during their stay.</span></span></p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">Hotel Diana has <strong>meeting rooms</strong> for company meetings, family celebrations or any other type of event in a unique location. Customers also have an impressive terrace overlooking the sea to celebrate all kinds of events. Its special features make it, without any doubt, one of the best places to hold an event in Tossa de Mar.</span></span></p>
<p><span style="font-family: verdana,geneva;"><span style="font-size: small;">Hotel Diana does not have a car park in the hotel itself, although it offers its guests a closed car park in Hotel Marina Tossa, just 800 metres away.</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>
<p></p>
<span style="font-family: verdana,geneva;"><span style="font-size: small;"></span></span>
		</div>
	</div>
	<div class="right">
		
				  <div id="titulo">Offers</div>
				  <div id="accordion5" class="accordion">
					  
						  <h2><a href="#">Book now and we invite you to a bottle of cava</a></h2>
						  <div>
								
									  <img src="https://www.rolinesystem.com/v6/upload/img_promotions/e59cf2ea26_9540770866_cava.jpg"/>
								<span id="result_box" lang="en"><span title="Haz clic para obtener traducciones alternativas" class="hps">Only</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">if you book</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">on our</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">website</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">you get the</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">best</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">price</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">and</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">we invite you</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">to</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">a</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">bottle</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">of</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">cava</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">on</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">your</span> <span title="Haz clic para obtener traducciones alternativas" class="hps">first night</span><span title="Haz clic para obtener traducciones alternativas">!</span></span>
									<a href="http://www.hotelesdante.com/en/promotions-hotel-diana-tossa-de-mar/free-cava">[+]&nbsp;see details</a>
								
							  
						  </div>
					  
						  <h2><a href="#">Early booking super deal</a></h2>
						  <div>
								
									  <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9535744884_10-discount.png"/>
								<p>10% off for booking in advance. The total amount of the booking will be charged at the moment of the booking and is non refundable. Does not allow cancellations or changes.</p>
									<a href="http://www.hotelesdante.com/en/promotions-hotel-diana-tossa-de-mar/early-booking-super-deal">[+]&nbsp;see details</a>
								
							  
						  </div>
					  
				  </div>
			
			<div id="social">
				
                    <a href="http://www.facebook.com/home.php?#!/pages/Tossa-Spain/HOTEL-DIANA/95407745172" class="facebook" target="_blank">Follow us on</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">Opinions</div>
                    <ul id="feedBack"> 
                        
                            <li>
                                <ul>
                                    
                                        <li class="comment">&ldquo;Unusual hotel with beautiful features. Lovely courtyard for breakfast and ideally situated for the beach and shops.&rdquo;</li>
                                        <li class="author">&mdash; Denece</li>
                                    
                                </ul>
                            </li>   
                        
                            <li>
                                <ul>
                                    
                                        <li class="comment">&ldquo;We were happily surprised because it was very elegant even though it is rated as a 2 star. I would add a few stars. The breakfast which was included was substantial including eggs, bacon or sausage, toast, muffins, fruit and fruit juices, yoghurt, coffee and tea. The staff were very helpful. Located right across from the beach.&rdquo;</li>
                                        <li class="author">&mdash; Brian</li>
                                    
                                </ul>
                            </li>   
                        
                    </ul>
                    <form name="FeedBack" id="FeedBack">
                        <input type="hidden" name="IdHotel" value="243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325" />
                        <ul>
                            <li>    
                                <label>Name</label>
                                <input name="nombre" type="text" class="inputs" id="nombre" size="30" maxlength="100" />
                            </li>
                            <lI>
                                <label>Last name</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>Comments</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="Send" 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 style="width:250px"><h2>Hoteles Dante</h2>
            	<ul>
                	<li><a href="http://www.hotelesdante.com/en/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/en/hotel-diana-tossa-de-mar" title="Hotel Diana - Tossa de Mar">Hotel Diana</a></li>
                	<li style="width:225px;"><a href="http://www.bestwesterndante.com" target="_blank" href_old="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="Best Western Premier Hotel Dante - Barcelona">BEST&nbsp;WESTERN&nbsp;PREMIER&nbsp;Hotel&nbsp;Dante&nbsp;****</a></li>
                    <!--li><a href="http://www.hotelesdante.com/en/hotel-marina-tossa-de-mar" title="Hotel Marina Tossa - Tossa de Mar">Hotel Marina Tossa *</a></li>
                    <li><a href="http://www.hotelesdante.com/en/hotel-windsor-tossa-de-mar" title="Hotel Windsor - Tossa de Mar">Hotel Windsor *</a></li-->
                </ul>
          	</li>
            <li style="width:180px"><h2>Other hotels</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">More information</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>

