
<!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>Hotels Dante - Hotels in Tossa de Mar and Barcelona</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="Hotels Dante - Hotels in Tossa de Mar and Barcelona" />
        <meta name="description" content="Hotels in Tossa de Mar and Barcelona: Hotel Delf&#237;n, Hotel Diana and Best Western Dante. Best price guaranteed." />
        <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="Hotel Dante, Hotel Tossa de Mar, Hotel Tossa de Mar, Tossa Hotel, Hotel Barcelona, Hotels Barcelona, Accommodation Barcelona, Hotel 4 star Tossa de Mar, Hotel 1 star Tossa de Mar, Hotel near beach Tossa, Tossa Budget Hotel, Hotel Nouveau Tossa, Tossa Hotel swimming pool, tennis Tossa Hotel, Best Western Premier Dante Barcelona Best Western." />
	
    
      
    <!--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/Menu96/9377626827_juniorst.jpg' alt='juniorst' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu96/9377661964__dsc4989.jpg' alt='_dsc4989' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu96/9377627016_delfinfachada.jpg' alt='delfinfachada' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu96/9377627173_delfinsolarium.jpg' alt='delfinsolarium' /></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="idioma" value="en">
                
                <input type="hidden" name="IdWebsite" value="11" />
            
                <input type="hidden" name="IdHotel" value="97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb" />
            
                <input type="hidden" name="IdMenu" value="96" />
            
                <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>
                            
                            	<li><a target="_blank" title="Tossa de Mar" href="http://travel.nationalgeographic.com/travel/best-trips-2012/costa-brava-spain-photos/"><img 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="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="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/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"  selected="selected" >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="23/02/2012" />
                        </li>
                        <li id="checkout">
                        	<label>Check-out date</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>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>
    
    <ul id="nav" style="margin:0 auto;">
        <li>
            <ul style="margin-left:80px;">
                <li><a href="http://www.hotelesdante.com/en/hotel-delfin-tossa-de-mar" title="Hotel Delfín - Tossa de Mar">Hotel Delfín</a></li> 
                <li>Tossa de Mar</li>
            </ul>
        </li>
        <li>
            <ul style="margin-left:80px;">
                <li><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar" title="Hotel Diana - Tossa de Mar">Hotel Diana</a></li> 
                <li>Tossa de Mar</li>
            </ul>
        </li>
        <!--li>
            <ul>
                <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>Tossa de Mar</li>
            </ul>
        </li>
        <li>
            <ul>
                <li><a href="http://www.hotelesdante.com/en/hotel-windsor-tossa-de-mar" title="Hotel Windsor - Tossa de Mar">Hotel Windsor</a></li> 
                <li>Tossa de Mar</li>
            </ul>
         </li-->
         <li>
            <ul style="margin-left:80px;">
                <li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="Best Western Premier Hotel Dante - Barcelona">Best Western Premier Hotel Dante</a></li>
                <li>Barcelona</li>
            </ul>
        </li>
    </ul>
    
    <div id="content">
    	        
        <div class="hotel">
        	<div class="left">
                <div class="thumbnail">
                    <img src="http://www.hotelesdante.com/img/HotelDelfin.jpg" />
                    <a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb&LC=en" class="button motor">Book &raquo;</a>
                    
                    	<div class="priceFrom"><span>from&nbsp;50,00 €</span></div>
                    	
                </div>
                <div class="description">
                    <h1><a href="http://www.hotelesdante.com/en/hotel-delfin-tossa-de-mar" >Hotel Delfín ****</a></h1>
                    <p><strong>Hotel Delfín</strong> is a <strong>4-star hotel</strong> in a privileged location in the centre of <strong>Tossa de Mar</strong>, just 100 metres from the beach. An ideal hotel to enjoy your holidays in Tossa de Mar. <strong>Free Wi-Fi</strong> in the whole of the hotel. <em>Hotel Delfín will open next season the 30th March.</em><br /><br /></p>
                    <ul>
                        <li>Avd. Costa Brava, 2 </li>
                        <li>17320 Tossa de Mar, Girona (España)</li>
                        <li>Tlf. (0034) 972 34 02 50</li>
                        <li>Fax: (0034) 972 34 11 03</li>
                        <li>Email: <a href="mailto:info@hotel-delfin.com">info@hotel-delfin.com</a></li>
                    </ul>
                </div>
            </div>
          	<div class="right">
          		
                    <div id="titulo">Offers</div>
                    <div id="accordion2" class="accordion">
                      
                          <h2><a href="#">Early booking super deal (-15%)</a></h2>
                      <div>
						  
                              <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9536469037_15-discount(2).png"/>
                          <p>15% 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-delfin-tossa-de-mar/early-booking-super-deal-(15)">[+]&nbsp;see details</a>
                        </div>
                      
                          <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/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-delfin-tossa-de-mar/free-cava">[+]&nbsp;see details</a>
                        </div>
                      
                    </div>
               
            </div>     
        </div>
        
        <div class="hotel">
        	<div class="left">
                <div class="thumbnail">
                    <img src="http://www.hotelesdante.com/img/HotelDiana.jpg" />
                    <a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=243d8c1530f81653e76d9f08fd332b07a65b625d7947c2f537a570e90474d325&LC=en" class="button motor">Book &raquo;</a>
                    
                    	<div class="priceFrom"><span>from&nbsp;60,00 €</span></div>
                    	
                </div>
                <div class="description">
                    <h1><a href="http://www.hotelesdante.com/en/hotel-diana-tossa-de-mar" >Hotel Diana</a></h1>
                    <p><strong>Hotel Diana</strong> is a small <strong>boutique hotel</strong> located on the <strong>sea front</strong> in a singular modernist building that is listed by the Town Council of <strong>Tossa de Mar</strong>. Its architecture and its location opposite Tossa beach will make your stay unforgettable. <strong>Free Wi-Fi</strong> in the whole of the hotel. <em>Hotel Diana will open next season the 30th March.</em><br /><br /></p>
                    <ul>
                        <li>Plaza de España, 6</li>
                        <li>17320 Tossa de Mar, Girona (España)</li>
                        <li>Tlf. (0034) 972 34 18 86</li>
                        <li>Fax: (0034) 972 34 11 03</li>
                        <li>Email: <a href="mailto:info@diana-hotel.com">info@diana-hotel.com</a></li>
                    </ul>
                </div>
           	</div>
            <div class="right">
                 
                    <div id="titulo">Offers</div>
                    <div id="accordion3" 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>            
        </div>
        
        <!--div class="hotel">
        	<div class="left">
                <div class="thumbnail">
                    <img src="http://www.hotelesdante.com/img/HotelMarinaTossa.jpg" />
                    <a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=4611f62d96fe65e70e61669582c675a355fc73c4688921a7f6a8d3f21e044646&LC=en" class="button motor">Book &raquo;</a>
                    	
                </div>
                <div class="description">
                    <h1><a href="http://www.hotelesdante.com/en/hotel-marina-tossa-de-mar" >Hotel Marina Tossa *</a></h1>
                    <p><strong>Hotel</strong> located in a <strong>quiet area</strong>, very near the centre of Tossa de Mar and <strong>10 minutes from the beach</strong>. The Hotel has 2 <strong>swimming pools</strong>, <strong>tennis courts</strong> and a garden, as well as a private car park.<br /><br /><br /></p>
                    <ul>
                        <li>Avda. Catalunya, 35</li>
                        <li>17320 Tossa de Mar, Girona (España)</li>
                        <li>Tlf. (0034) 972 34 02 21</li>
                        <li>Fax: (0034) 972 34 20 30</li>
                        <li>Email: <a href="mailto:marinatossa@dante-hoteles.com">marinatossa@dante-hoteles.com</a></li>
                    </ul>
                </div>
            </div>
          <div class="right">
           
           		<div id="titulo">Offers</div>
             	<div id="accordion4" class="accordion">
               	  
                      <h2><a href="#">Children stay free of charge!</a></h2>
                  <div>
                          
                              <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9560598234_cparquejpg.jpg"/>
                          We want you to enjoy your family vacation! That is why<span id="result_box" lang="en"><span title="Haz clic para obtener traducciones alternativas"></span> <span class="hps" title="Haz clic para obtener traducciones alternativas">one child</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">under 10 years old</span> has <span class="hps" title="Haz clic para obtener traducciones alternativas">free</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">accommodation</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">and</span> breakfast <span class="hps" title="Haz clic para obtener traducciones alternativas">in a</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">double room</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">with</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">two</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">adults</span><span title="Haz clic para obtener traducciones alternativas">. </span></span><span id="result_box" lang="en"><span title="Haz clic para obtener traducciones alternativas"></span></span>
                      		<a href="http://www.hotelesdante.com/en/promotions-hotel-marina-tossa-de-mar/children-stay-free">[+]&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/9535744669_10-discount.png"/>
                          <p><span style="color: #ff6600;">10% off</span> 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-marina-tossa-de-mar/early-booking-super-deal">[+]&nbsp;see details</a>
                    </div>
                  
              	</div>
             
            </div>
        </div-->
        
        <!--div class="hotel">
        	<div class="left">
                <div class="thumbnail">
                    <img src="http://www.hotelesdante.com/img/HotelWindsor.jpg" />
                    <a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=650c4207463320b02d7603e060556735f37ea9f095de9ded684594c727f221e0&LC=en" class="button motor">Book &raquo;</a>
                    
                </div>
                <div class="description">
                    <h1><a href="http://www.hotelesdante.com/en/hotel-windsor-tossa-de-mar" >Hotel Windsor *</a></h1>
                    <p><strong>Hotel Windsor</strong> is located in the shopping centre of <strong>Tossa de Mar</strong>, 2 minutes from the beach. The Hotel has a <strong>swimming pool</strong> and <strong>solarium</strong>, making it an ideal hotel to enjoy holidays in Tossa. All hotel rooms are exterior and have a flat screen TV. <br /><br /></p>
                    <ul>
                        <li>Carrer Nou, 28</li>
                        <li>17320 Tossa de Mar, Girona (España)</li>
                        <li>Tlf. (0034) 972 34 01 86</li>
                        <li>Fax: (0034) 972 34 20 30</li>
                        <li>Email: <a href="mailto:windsor@dante-hoteles.com">windsor@dante-hoteles.com</a></li>
                    </ul>
                </div>
            </div>
              <div class="right">
                  
                      <div id="titulo">Offers</div>
                      <div id="accordion5" class="accordion">
                          
                              <h2><a href="#">Early booking super deal (-10%)</a></h2>
                        <div>
						  
                              <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9883186207_9535744669_10-discount[1].png" width="300"/>
                          <p><span style="color: #ff6600;">10% off</span> 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-windsor-tossa-de-mar/early-booking-super-deal-(10)">[+]&nbsp;see details</a>
                          </div>
                          
                              <h2><a href="#">Children stay free of charge!</a></h2>
                        <div>
						  
                              <img src="https://www.rolinesystem.com/v6/upload/img_promotions/9560621762_windsorpiscinaup.jpg" width="300"/>
                          We want you to enjoy your family vacation! That is why<span id="result_box" lang="en"><span title="Haz clic para obtener traducciones alternativas"></span> <span class="hps" title="Haz clic para obtener traducciones alternativas">one child</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">under 10 years old</span> has <span class="hps" title="Haz clic para obtener traducciones alternativas">free</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">accommodation</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">and</span> breakfast <span class="hps" title="Haz clic para obtener traducciones alternativas">in a</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">double room</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">with </span><span class="hps" title="Haz clic para obtener traducciones alternativas">two</span> <span class="hps" title="Haz clic para obtener traducciones alternativas">adults</span><span title="Haz clic para obtener traducciones alternativas">.</span></span>
                            <a href="http://www.hotelesdante.com/en/promotions-hotel-windsor-tossa-de-mar/children-stay-free">[+]&nbsp;see details</a>
                          </div>
                          
                      </div>
                  
            </div>
        </div-->
        
        <div class="hotel">
        	<div class="left">
                <div class="thumbnail">
                    <img src="http://www.hotelesdante.com/img/BestWesternPremierHotelDante.jpg" />
                    <a href="http://www.bestwestern.es/reserve.aspx?id=92097&language=en_EN" class="button" target="_blank">Book &raquo;</a>
                </div>
                <div class="description">
                    <h1><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" >Best Western Premier Hotel Dante ****</a></h1>
                    <p>The Best Western Premier Hotel Dante has a privileged location in the heart of the city only three blocks from the emblematic Paseo de Gracia, walking distance to the Gaudi architecture, the modernist area and 10 minute walk from Catalunya Square. Whether traveling on business or pleasure the Best Western Premier Hotel Dante is the best area to stay.</p>
                    <ul>
                        <li>Mallorca, 181</li>
                        <li>08036 Barcelona (España)</li>
                        <li>Tlf. (0034) 93 323 22 54</li>
                        <li>Fax: (0034) 93 323 74 72</li>
                        <li>Email: <a href="mailto:info@hoteldante.es">info@hoteldante.es</a></li>
                    </ul>
                </div>
            </div>
          	<div class="right">
				&nbsp;
            </div>
        </div>
    </div>
    
<div id="footer">
    	<ul>
        	<li><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.hotelesdante.com/en/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/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><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>

