
<!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>Best Western Premier Hotel Dante 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="Best Western Premier Hotel Dante Barcelona" />
        <meta name="description" content="Hotel Delfín is a 4-star hotel located in the centre of Tossa de Mar, just 100 m from the beach. Ideal for holiday stays in Tossa de Mar." />
        <meta name="author" content="Hoteles Dante" />
        <meta name="date" content="2010-10-10T09:00:00+00:00" />
        <meta name="identifier-url" content="http://www.hotelesdante.com/" />
        <meta name="keywords" lang="en" content="hotel dante barcelona, hotel barcelona, hotel barcelona center, hotel barcelona eixample, hotel eixample, hotel best western barcelona, best western barcelona, hotel barcelona city, hotel parking barcelona, hotel free wifi barcelona, hotel muntaner barcelona, hotel paseo de gracia barcelona, hotel paseo de gracia, hotel wifi barcelona" />
    
    
      
    <!--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/Menu95/9377587301_hoteldante01.jpg' alt='hoteldante01' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu95/93775873210_hoteldante02.jpg' alt='_hoteldante02' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu95/9377587351_hoteldante03.jpg' alt='hoteldante03' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu95/93775873810_hoteldante04.jpg' alt='_hoteldante04' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/97afbdc6eaaf4b57d4e6288d756d211ec7c0164d98bd479c2c6d62d8162caacb/Website11/Menu95/9377587414_hoteldante05.jpg' alt='hoteldante05' /></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="dante">
                
                    <input type="hidden" name="urlRule2" value="index_dante.php">
                
                    <input type="hidden" name="LC" value="ita">
                
                <input type="hidden" name="idioma" value="en">
            
                <input type="hidden" name="IdHotel" value="650c4207463320b02d7603e060556735f37ea9f095de9ded684594c727f221e0" />
            
                <input type="hidden" name="IdMenu" value="95" />
            
                <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="7" type="hidden">
                    <input name="arrivalMonthYear" id="arrivalMonthYear" value="201202" type="hidden">
                    <input name="departureDay" id="departureDay" value="8" 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" >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"  selected="selected" >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="07/02/2012" />
                        </li>
                        <li id="checkout">
                        	<label>Check-out date</label>
                			<input type="text" name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="08/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>

<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/western-dante.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/best-western-premier-hotel-dante-barcelona" title="BW PREMIER HOTEL DANTE" >BW PREMIER HOTEL DANTE</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="ROOMS" >ROOMS</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="Meeting Rooms" >Meeting Rooms</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="Services" >Services</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="Location" >Location</a></li>   
				
        		<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona" title="offers" >offers</a></li>   
				
        	<li><a href="http://www.hotelesdante.com/en/best-western-premier-hotel-dante-barcelona/contact" title="Contact - Best Western Premier Hotel Dante Barcelona" rel="contact">Contact</a></li>
        
    </ul>


<div id="content">
	<h1>
    	<div id="wifi">
			
        </div>
    </h1>
	<div class="left">
    	
		<div id="text">
			
		</div>
	</div>
	<div class="right">
		
	</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>

