
<!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>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   
	
        <!--TITLE-->
        <title>Enlaces - Hostal Barrera</title>
        
        <!-- METATAGS -->
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    
        <meta name="robots" content="all" />
        <meta name="revisit-after" content="7 days" />
        <meta http-equiv="expires" content="0" />
        <meta http-equiv="cache-control" content="public" />
        <meta http-equiv="pragma" content="no-cache" /> 
        <meta http-equiv="content-language" content="es" />
        <meta name="title" content="Enlaces - Hostal Barrera" />
        <meta name="description" content="Le facilitamos información de interés turístico en Madrid." />
        <meta name="author" content="Hostal Barrera" />
        <meta name="date" content="2011-11-11T09:00:00+00:00" />
        <meta name="identifier-url" content="http://www.hostalbarrera.com/" />
        <meta name="keywords" lang="es" content="hostal barrera wifi gratis, hostal barrera servicios," />
    

    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" />
    <title>Hostal Barrera</title>
    
    
    <link href="/includes/css/styles.css" rel="stylesheet" type="text/css" />
    
    <script type="text/javascript" src="http://www.eltiempo.es/widget/widget_loader/c0b5d12d2b39dd2a06e7c918e14c2b72"></script>

<!-- JQUERY -->
<script src="http://www.hostalbarrera.com/includes/js/jquery-1.4.2.min.js" type="text/javascript"></script>

<!-- SUPERFISH -->
<script type="text/javascript">
/* <![CDATA[ */
	$(document).ready(function(){
		$('ul.sf-menu').superfish();
	});
/* ]]> */
</script>


<!-- DATEPICKER -->
<script src="http://www.hostalbarrera.com/includes/js/calendar_language/ui.datepicker-es.js" type="text/javascript"></script>
<script type="text/javascript">
/* <![CDATA[ */

	$(document).ready(function() {
		$("#CheckInDate").datepicker($.extend({minDate: 0}, $.datepicker.regional['es']));
		$("#CheckOutDate").datepicker($.extend({minDate: 1}, $.datepicker.regional['es']));
		$("#Date").datepicker($.datepicker.regional['es']);
	});
	
	function UpdateCheckOutDate(){
		if(parseInt(document.getElementById('Nights').value) < 1) document.getElementById('Nights').value = 1;
		utcCheckInDateTab = document.getElementById('CheckInDate').value.split("/");
		utcCheckOutDateTab = document.getElementById('CheckOutDate').value.split("/");
		utcCheckInDate = utcCheckInDateTab[1] + "/" + utcCheckInDateTab[0] + "/" + utcCheckInDateTab[2];
		utcCheckOutDate = utcCheckOutDateTab[1] + "/" + utcCheckOutDateTab[0] + "/" + utcCheckOutDateTab[2];
		utcDateDiff = dateDiff("d", utcCheckInDate, utcCheckOutDate, 2);
		if (utcDateDiff > 0) {
			utcNewCheckOutDate = dateAdd("d", parseInt(document.getElementById('Nights').value), utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
		} else {
			utcNewCheckOutDate = dateAdd("d", 1, utcCheckInDate);
			if (parseInt(utcNewCheckOutDate.getDate()) < 10 ) utcNewCheckOutDay = "0" + parseInt(utcNewCheckOutDate.getDate()); else utcNewCheckOutDay = parseInt(utcNewCheckOutDate.getDate());
			if (parseInt(utcNewCheckOutDate.getMonth() + 1) < 10 ) utcNewCheckOutMonth = "0" + parseInt(utcNewCheckOutDate.getMonth() + 1); else utcNewCheckOutMonth = parseInt(utcNewCheckOutDate.getMonth() + 1);
			document.getElementById('CheckOutDate').value = utcNewCheckOutDay + "/" + utcNewCheckOutMonth + "/" + utcNewCheckOutDate.getFullYear();
			$("#CheckOutDate").datepicker( "option", "minDate", dateAdd("d", 1, utcCheckInDate) );
			document.getElementById('Nights').value = "1";
		}
	}
	
	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();
		}
			
	}
	
	<!-- 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 + "'";
		}
	}

/* ]]> */
</script>


<!-- COLOR BOX -->
<script type="text/javascript">
/* <![CDATA[ */
	$(document).ready(function(){
		$("a[rel='gallery']").colorbox({
			transition:"fade",
			current: "Imagen {current} de {total}",
			previous: "Anterior",
			next: "Siguiente",
			close: "Cerrar"
		});
		$(".colorbox").colorbox({rel: 'nofollow', transition: "fade"});
		$(".motor").colorbox({rel: 'nofollow', iframe: true, width: '1000px', height:'95%', overlayClose:false});
	});
/* ]]> */
</script>

<!-- CYCLE -->
<script type="text/javascript">
/* <![CDATA[ */

$(document).ready(function() {
	$("#slide").html("<li><img src='https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/9796374088_foto1.jpg' alt='foto1'  style='border:5px solid #333;' width='874' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/9796374091_foto2.jpg' alt='foto2'  style='border:5px solid #333;' width='874' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/97963741010_foto3.jpg' alt=' foto3'  style='border:5px solid #333;' width='874' /></li><li><img src='https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/9796374118_foto4.jpg' alt='foto4'  style='border:5px solid #333;' width='874' /></li>");

    $('#pause').click(function() { $('#photos').cycle('pause'); return false; });
    $('#play').click(function() { $('#photos').cycle('resume'); return false; });
    
    $('#gallery').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );
    
    $('#photos').cycle({
        fx:     'fade',
        speed:   800,
        timeout: 5000,
        next:   '#next',
        prev:   '#prev'
    });
	
	$('ul#slide').cycle({
		fx:     'fade',							
		speed: 1000,
		timeout: 5000
	});
});
/* ]]> */
</script>

<!-- SUBMIT FORM -->
<script type="text/javascript">
/* <![CDATA[ */
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>

<!-- TOOGLE -->
<script type="text/javascript">
/* <![CDATA[ */
function toggleVisibility(tagId) {
	try { 
		var tagToToggle = document.getElementById(tagId);
		if (tagToToggle.style.display == 'none') {
			tagToToggle.style.display = 'block';
			tagToToggle.style.visibility = 'visible';
		} else {
			tagToToggle.style.display = 'none';
			tagToToggle.style.visibility = 'hidden';
		}
	} catch (e) {
	}
}
/* ]]> */
</script>



<script language="javascript">
/* <![CDATA[ */	
	function trim (myString)
	{
	return myString.replace(/^\s+/g,'').replace(/\s+$/g,'')
	}
	
	
	function validar_c(form)  {
	 if ((trim(document.getElementById('emailcontacto').value) == "") || (trim(document.getElementById('nombrecontacto').value) == "") || (trim(document.getElementById('consultacontacto').value) == "")) {
		alert('Faltan rellenar los campos obligatorios marcados con *');
		document.getElementById('consultacontacto').focus();
		return false;
	 } else {
		document.getElementById('contactoform').submit();
	 }
	}
/* ]]> */
</script>

<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;
		}
		
		document.getElementById("contacto").submit();
		return true;
	}
</script>


<!-- GOOGLE ANALYTICS -->
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17062194-1']);
  _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>


</head>
<body>



<!--------------------------------------------LANG-------------------------------------------->    
<form name="ChangePage" method="post" action="interior.asp" >		
	
            <input type="hidden" name="IdWebsite" value="39">
        
            <input type="hidden" name="urlRule1" value="enlaces">
        
            <input type="hidden" name="urlRule2" value="0">
        
            <input type="hidden" name="LC" value="es">
        
        <input type="hidden" name="idioma" value="">
    
        <input type="hidden" name="IdMenu" value="270" />
    
        <input type="hidden" name="IdSubMenu" value="" />
    
</form>

<div id="lang">
        <div id="langbox"><a href="/" onlyclick="Javascript: document.ChangePage.action = '/index.asp'; document.ChangePage.idioma.value = 'es'; document.ChangePage.submit(); "><img src="/img/es.png" name="Espa&ntilde;ol"  border="0" id="Espa&ntilde;ol" /></a>&nbsp;<a href="/en" onlyclick="Javascript: document.ChangePage.action = '/index.asp'; document.ChangePage.idioma.value = 'en'; document.ChangePage.submit(); "><img src="/img/en.png" name="English"  border="0" id="English" /></a> </div>
</div>
<!--------------------------------------------HEADER-------------------------------------------->    
<div id="content">
	<div id="header">
		<div id="headerbox">
           <div id="logo"><img src="/img/hostalbarrera.jpg" alt="Hostal Barrera"></div>
        </div>   
    </div>
    <div id="menues"> 
	<div id="bgmenu_es">
        <ul class="sf-menu">
            
                    	<li><a href="http://www.hostalbarrera.com/" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '268'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Inicio">Inicio</a>
            		
                </li>
			
                	<li><a href="http://www.hostalbarrera.com/es/habitaciones" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '269'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Habitaciones">Habitaciones</a>
                
                </li>
			
                	<li><a href="http://www.hostalbarrera.com/es/enlaces" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '270'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="ENLACES">ENLACES</a>
                
                </li>
			
                	<li><a href="http://www.hostalbarrera.com/es/ubicacion" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '271'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Ubicacion">Ubicacion</a>
                
                </li>
			
            <!--li><a href="http://www.hostalbarrera.com/es/ofertas" title="Ofertas &amp; Packs">Ofertas &amp; Packs</a></li-->
            <li><a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a&amp;LC=es" class="motor linkmenu">Reservas</a></li>
            <li><a href="/es/agenda" class="linkmenu">Agenda</a></li>
            <li><a href="/es/feed-back" class="linkmenu">Feed back</a></li>
          </ul>
      </div>
</div>           
    <!--------------------------------------------IMG-------------------------------------------->
    <div id="img">
      <ul id="slide"><li>&nbsp;</li></ul>
    </div>
    <!--------------------------------------------COL LEFT-------------------------------------------->  
    <div id="info">
        <div id="col_s">
            <div id="sbox">	
                
                
                <div style="height:200px" id="fotos">
                
                <div id="TA_certificateOfExcellence358" class="TA_certificateOfExcellence" style="margin:-20px 0 0 60px;">
				<ul id="onOOi30tK" class="TA_links 7lvYaK">
				<li id="h6vY1yTzN8" class="jESVLU"><a href="http://www.tripadvisor.es/Hotel_Review-g187514-d289578-Reviews-Hostal_Barrera-Madrid.html">Hostal Barrera</a></li>
				</ul>
				</div>
				<script src="http://www.jscache.com/wejs?wtype=certificateOfExcellence&uniq=358&locationId=289578&lang=es&year=2012"></script>
                
                </div>
                <!--
                <div id="fotos">
                    <a href="/es/descargas"><img src="/img/foto1.jpg" width="124" height="95" border="0" /></a> <a href="/es/descargas"><img src="/img/foto2.jpg" width="124" height="95" border="0" /></a>
                </div>
                -->
                <div id="tiempo" style="margin-top:-30px;">
                    <a href="http://www.eltiempo.es/madrid.html" target="_blank"><img src="/img/tiempo.jpg" border="0" /></a> 
                </div>
                  
                <div>
                	<form action="/es/feed-back/enviar" method="post" name="contacto" id="contacto" onSubmit="Javascript: return Validate();">
                    	<input type="hidden" name="antiScript" value="" />
                    	<table width="100%" border="0" cellspacing="0" cellpadding="0">
                            <tr>
                              <td height="41" align="center" valign="middle"></td>
                              <td colspan="2" align="left" valign="middle"><span style=" font-size:16px;">ENVIANOS TUS COMENTARIOS</span></td>
                              </tr>
                            <tr>
                              <td width="5" height="28" align="left" valign="middle">&nbsp;</td>
                              <td width="89" align="left" valign="top"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:12px;">Nombre*</span></td>
                              <td width="183" align="left" valign="top"><input name="nombre" type="text" class="inputs" id="nombre" size="22" maxlength="100" /></td>
                            </tr>
                            <tr>
                              <td height="28" align="left" valign="middle">&nbsp;</td>
                              <td align="left" valign="top"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:12px;">Apellido</span></td>
                              <td align="left" valign="top"><span class="txt">
                                <input name="apellido" type="text" class="inputs" id="apellido" size="22" maxlength="100" />
                              </span></td>
                            </tr>
                            <tr>
                              <td height="28" align="left" valign="middle">&nbsp;</td>
                              <td align="left" valign="top"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:12px;">E-mail*</span></td>
                              <td align="left" valign="top"><span class="txt">
                                <input name="email" type="text" class="inputs" id="email" size="22" maxlength="100" />
                              </span></td>
                            </tr>
                            <tr>
                              <td height="64" align="left" valign="middle">&nbsp;</td>
                              <td align="left" valign="top"><span style=" font-family:Arial, Helvetica, sans-serif; font-size:12px;">Comentario*</span></td>
                              <td align="left" valign="top"><span class="txt">
                            <textarea name="comentarios" cols="18" rows="3" class="inputs" id="comentarios"></textarea>
                                </span></td>
                            </tr>
                            <tr>
                                  <td height="64" align="left" valign="middle">&nbsp;</td>
                                  <td align="left" valign="top">Captcha*</td>
                                  <td align="left" valign="top"><span class="txt">
                                    <input id="Captchacode" name="Captchacode" type="text"  size="22" maxlength="6" />
                                    <img id="imgCaptcha" src="includes/captcha.asp" />
                                    <a href="javascript:void(0)" onclick="RefreshImage('imgCaptcha')"><img src="/img/refresh-captcha.jpg" border="0" width="15" /></a>
                                    </span></td>
                                </tr>
                            <tr>
                              <td height="38" align="left" valign="middle">&nbsp;</td>
                              <td align="left" valign="middle">&nbsp;</td>
                              <td align="left" valign="middle"><span class="txt"><input name="button2" type="submit" class="btn" id="button2" value="Enviar" />
                                
                              </span></td>
                            </tr>
                      	</table>
                	</form>
                </div>
            </div>
       
    </div>
    <!--------------------------------------------COL MEDIO-------------------------------------------->  
    <div id="col_m">
        <div id="mbox">
                <div id="reservas">	
                
<form id="bookform" name="bookform" >
    <input type="hidden" name="LC" id="LC" value="es" />
    <input type="hidden" name="IdClient" id="IdClient" value="5c760b711cb23bd30bb903aff00c93ccac7b3b316fc34299a961cd1125b62539" />
    <input type="hidden" name="IdHotel" id="IdHotel" value="49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a" />
    <ul>
        <li style="text-align:center; padding:0 10px;">
        	<h1>Haz tu Reserva</h1>
            <h2> ONLINE</h2>
        </li>
        <li>
            <label>Fecha de Llegada</label>
            <input name="CheckInDate" id="CheckInDate" class="m" onchange="Javascript: UpdateCheckOutDate();" value="19/05/2013" />
        </li>
        <li>
            <label>Fecha de Salida</label>
            <input name="CheckOutDate" id="CheckOutDate" class="m" onchange="Javascript: UpdateNights();" value="20/05/2013" />
        </li>
        <li>
            <label>Noches</label>
            <input name="Nights" id="Nights" class="s" value="1" onchange="Javascript: UpdateCheckOutDate();" />
        </li>
        <!--li>
            <label>Adultos</label>
            <input name="Adults" class="s" value="2"/>
        </li>
        <li>
            <label>Ni&ntilde;os</label>
            <input name="Children" class="s" value="0"/>
        <li-->
    
        <input type="hidden" name="DiscountCode" id="DiscountCode" value="" />
    
        <li>
            <button type="button" onclick="Javascript: $.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+'&DiscountCode='+document.getElementById('DiscountCode').value, iframe: true, width: '1000px', height: '95%', overlayClose:false}); return false; ">Reserva</button>
        </li>
    </ul>
</form>
                </div>
                <div id="bdinfotop">	
                    <div id="infobox">
                        <p><span style="font-size: x-small;"><br /><br />El Hostal Barrera le facilita enlaces a sitios web de interés de la ciudad de Madrid. Pinche en el icono para ir a la página:<br /><br /><br /><span style="font-size: small;"><em><strong>ARTE EN MADRID</strong></em></span><br /><br /><a title="Museo del Prado" href="http://www.museodelprado.es/" target="_blank"><img alt="99202965410_logo-PRADO.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/99202965410_logo-PRADO.gif" width="100" /></a> <a title="Museo Reina Sofia" href="http://www.museoreinasofia.es/index.html" target="_blank"><img alt="9920301372_nuevo_logo_mini-copia-reina-sofia.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301372_nuevo_logo_mini-copia-reina-sofia.jpg" width="82" height="45" /></a>     <a title="Museo Sorolla" href="http://museosorolla.mcu.es/" target="_blank"><img alt="9920299726_img_intro-SOROLLA.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920299726_img_intro-SOROLLA.jpg" width="100" /></a>     <a title="Museo del Traje" href="http://museodeltraje.mcu.es/" target="_blank"><img alt="9920300492_logo-traje.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300492_logo-traje.jpg" width="100" /></a><br /><a title="Museo Sorolla" href="http://museosorolla.mcu.es/" target="_blank"><br /></a>   <a title="Museo de América" href="http://museodeamerica.mcu.es/" target="_blank"><img alt="9920300223_logo-MUSEO-AMERICA.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300223_logo-MUSEO-AMERICA.gif" width="99" height="55" /></a>      <a title="Museo de Arte Romano" href="http://museoarteromano.mcu.es/" target="_blank"><img alt="9920301104_logo_romano.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301104_logo_romano.gif" width="100" /></a>     <a title="Museo Thyssen-Bornemisza" href="http://www.museothyssen.org/thyssen/home" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920330647_circo.jpg" width="66" height="60" /></a>    <a title="Patrimonio Nacional" href="http://www.patrimonionacional.es/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920334008_logo_patrim.gif" width="100" /></a><br /><br /><br /><a title="Caixa Forum Madrid" href="http://obrasocial.lacaixa.es/nuestroscentros/caixaforummadrid/caixaforummadrid_es.html" target="_blank"><img alt="9920300029_LOGO-CAIXA.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300029_LOGO-CAIXA.gif" width="100" /></a>   <a title="Museo Nacional de Ciencias Naturales" href="http://www.mncn.csic.es/home800.php" target="_blank"><img alt="9920301153_logomncn.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301153_logomncn.jpg" width="100" /></a>  <a title="Museo Cerralbo" href="http://museocerralbo.mcu.es/" target="_blank"><img alt="9920301163_logo-museo-CERRALBO.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301163_logo-museo-CERRALBO.jpg" width="100" /></a><br /><br /><br /><strong><span style="font-size: small;">TRANSPORTE EN MADRID, LÍNEAS AEREAS, TREN, AUTOBUSES....<br /></span></strong><br /><a title="Air EUropa" href="http://www.aireuropa.com" target="_blank"><img alt="9920300039_logo-air-europa.png" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300039_logo-air-europa.png" width="100" /></a>      <a title="Iberia" href="http://www.iberia.com/" target="_blank"><img alt="9920301137_logoiberia.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301137_logoiberia.jpg" width="100" /></a>      <a title="Easy Jet" href="http://www.easyjet.com/ES" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920338784_easyjet.jpg" width="100" /></a>    <a title="AENA" href="http://www.aena.es/csee/Satellite?pagename=Home" target="_blank"><img alt="9920300505_logo_aena.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300505_logo_aena.gif" width="100" /></a><br /><br /><br /><br /> <br /><a title="Renfe" href="http://www.renfe.com/" target="_blank"><img alt="9920300485_logo-renfe.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920300485_logo-renfe.jpg" width="128" height="57" /></a>       <a title="EMT Madrid" href="http://www.emtmadrid.es/" target="_blank"><img alt="99203011110_logotipoEMT.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/99203011110_logotipoEMT.jpg" width="70" height="81" /></a>    <a title="Linea Express Aeropuerto " href="http://www.emtmadrid.es/lineaAeropuerto/horarios.html" target="_blank"><img alt="99203011110_logotipoEMT.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/99203011110_logotipoEMT.jpg" width="71" height="81" /></a>    <a title="Grupo Avanza" href="http://www.avanzabus.com/web/" target="_blank"><img alt="99203004710_logo_avanza.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/99203004710_logo_avanza.gif" width="100" /></a> <br /><br /><span style="font-size: x-small;"><a title="La Sepulvedana" href="http://www.lasepulvedana.es/" target="_blank"><img alt="9920301149_logo-la-sepulvedana.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301149_logo-la-sepulvedana.gif" width="100" /></a>    <a title="Transporte de Madrid, Metro, Autobuses....." href="http://www.ctm-madrid.es/" target="_blank"><img alt="9920301179_logotipoctm.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301179_logotipoctm.gif" width="100" /></a></span><br /><br /><span style="font-size: small;"><strong>PRENSA, TURISMO, FLAMENCO, FUTBOL.....<br /><br /><a title="El País" href="http://elpais.com/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927196019_cabecera_portada.png" width="100" /></a>   <a title="El Mundo" href="http://www.elmundo.es/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927199616_el-mundo.bmp" width="100" /></a> <a title="Radio Nacional de España" href="http://www.rtve.es/radio/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927197126_RNE.gif" width="100" /></a> <br />  <br /><a title="Todos los eventos de Madrid" href="http://www.esmadrid.com/es/portal.do" target="_blank"><img alt="9920301619_Turismo220x50.png" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9920301619_Turismo220x50.png" width="100" /></a>  <a title="La Guia de Madrid" href="http://www.guiadelocio.com/madrid" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927197112_logoGDO.png" width="100" /></a>  <a title="COrral de la Moreria" href="http://www.corraldelamoreria.com/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927196026_blancadelrey.jpg" width="100" /></a>   <a title="Café de Chinitas" href="http://chinitas.com/" target="_blank"><img src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927207173_chinitas.jpg" width="100" /></a> <br /><br /><a title="Las Ventas de Madrid" href="http://www.las-ventas.com/" target="_blank"><img alt="9927196649_logo_taurodelta.gif" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927196649_logo_taurodelta.gif" width="100" /></a>    <a title="Real Madrid " href="http://www.realmadrid.com/cs/Satellite/es/Prehome_ES2.htm" target="_blank"><img alt="9927197119_real-madrid.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927197119_real-madrid.jpg" width="69" height="75" /></a>    <a title="Athletico de Madrid" href="http://www.clubatleticodemadrid.com/" target="_blank"><img alt="9927196133_atletico-de-madrid.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927196133_atletico-de-madrid.jpg" width="77" height="72" /></a>   <a title="Alquiler de Bicis" href="http://www.bybike.info/" target="_blank"><img alt="9927196019_bike.jpg" src="https://www.rolinesystem.com/v6/upload/img_website/49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a/Website39/Menu270/SubMenu791/9927196019_bike.jpg" width="116" height="42" /></a><br /><br /><br /></strong></span></span></p>
<p><span style="font-size: x-small;"><strong>Las reservas telefónicas se atenderán en horario de 9 de la mañana a 22:00 de la noche. Después de esa hora, rogamos nos envíen un mail o realicen la reserva on-line. Gracias</strong></span></p>
<p></p>
                    </div>
                    <div id="bdinfobottom"><img src="/img/bg_info_bottom.jpg" width="202" height="60" align="right" /></div>
                </div>
        </div>
    </div></div>
    <div id="menufooter">
	
                <a href="http://www.hostalbarrera.com/" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '268'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Inicio">Inicio</a><img src="/img/sepabajo.jpg" width="22" height="10" />
            
            <a href="http://www.hostalbarrera.com/es/habitaciones" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '269'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Habitaciones">Habitaciones</a><img src="/img/sepabajo.jpg" width="22" height="10" />
        
            <a href="http://www.hostalbarrera.com/es/enlaces" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '270'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="ENLACES">ENLACES</a><img src="/img/sepabajo.jpg" width="22" height="10" />
        
            <a href="http://www.hostalbarrera.com/es/ubicacion" class="linkmenu" onlyClick="Javascript: document.ChangePage.action = 'index.asp'; document.ChangePage.IdWebsite.value = '39'; document.ChangePage.IdMenu.value = '271'; document.ChangePage.IdSubMenu.value = '0'; document.ChangePage.LC.value = 'es';  document.ChangePage.submit(); " title="Ubicacion">Ubicacion</a><img src="/img/sepabajo.jpg" width="22" height="10" />
        
    <!--li><a href="http://www.hostalbarrera.com/es/ofertas" title="Ofertas &amp; Packs">Ofertas &amp; Packs</a></li-->
    <a href="https://www.rolinesystem.com/v6.6.2/index.asp?IdHotel=49b043a78fb031e8f760a8a9629dfc4efb44918e81a7038888d05cd72ae1512a&amp;LC=es" class="motor linkmenu"  title="Reservas">Reservas</a><img src="/img/sepabajo.jpg" width="22" height="10" />
    <a href="/es/agenda">Agenda</a><img src="/img/sepabajo.jpg" width="22" height="10" />
    <a href="/es/contacto">Contacto</a><img src="/img/sepabajo.jpg" width="22" height="10" />
    <a href="http://www.hostalbarrera.com/es/feed-back" title="Feed back">Feed back</a>
</div>	<div id="footer">
    		
            <div id="footerbox">
        	<img src="/img/borde_footer.jpg" width="279" height="25" align="left" /> <p>C/ Atocha 96, 2&ordm;(28012) Madrid, Espa&ntilde;a / Tel. +34 91 5275381 - Fax  +34 91 5273950 / <a href="mailto:info@hostalbarrera.com">info@hostalbarrera.com</a></p>
  </div> 
	</div>
</div>
<div id="developed">
    <div id="developedbox">
    <span style="color:#FFF">By</span> <a href="http://www.rolinesystem.com" title="RolineSystem | motores de reservas, tiendas online & web marketing" style="color:#FFF" target="_blank">Roline System</a>
    </div>
    <div id="avisolegalbox">
    	<a href="/es/mapa-web" style="color:#FFF">Mapa Web</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="/es/aviso-legal" style="color:#FFF">Aviso legal</a>
    </div>
</div>
<!--------------------------------------------FOOTER-------------------------------------------->    

</body>
</html>