HTTP/1.1 200 OK
Cache-Control: private
Content-Length: 21200
Content-Type: text/html
Server: Microsoft-IIS/7.0
Set-Cookie: ASPSESSIONIDQCBCQCAB=HKFDKIEADMKNDHCLNMMGNFDP; path=/
X-Powered-By: ASP.NET
Date: Fri, 03 Sep 2010 12:11:47 GMT
Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<head>
<title>Hotel Valldemossa - Valldemossa Hotel, Hotel de lujo en Valldemossa, Mallorca</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">-->
<meta http-equiv='pragma' content='no-cache'>
<meta name="title" content="Hotel Valldemossa - Valldemossa Hotel, Hotel de lujo en Valldemossa, Mallorca">
<meta name="Keywords" content="Hotel Valldemossa, Valldemossa Hotel, Valldemossa, Hotel en Mallorca, Cartuja de Valldemossa, Mallorca, Islas Baleares, Majorca">
<meta name="Description" content="">
<meta name="Copyright" content="Valldemossa">
<meta name="ROBOTS" content="INDEX,FOLLOW,ALL">
<meta name="revisit" content="5 days">
<link rel="stylesheet" href="css/general.css" type="text/css" />
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="css/styleIE.css" /><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="css/styleIE6.css" />
<script type="text/javascript" src="js/ie6.js"></script>
<![endif]-->
<script type="text/javascript" src="js/cookies.js"></script>
<script type="text/javascript" src="js/funciones.js"></script>
<script language="javascript" type="text/javascript">
/*
* Calendar Script
* Creates a calendar widget which can be used to select the date more easily than using just a text box
* http://www.openjs.com/scripts/ui/calendar/
*/
calendar = {
month_names: ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],
weekdays: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa"],
month_days: [31,28,31,30,31,30,31,31,30,31,30,31],
//Get today's date - year, month, day and date
today : new Date(),
opt : {},
data: [],
//Functions
/// Used to create HTML in a optimized way.
wrt:function(txt) {
this.data.push(txt);
},
/* Inspired by http://www.quirksmode.org/dom/getstyles.html */
getStyle: function(ele, property){
if (ele.currentStyle) {
var alt_property_name = property.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});//background-color becomes backgroundColor
var value = ele.currentStyle[property]||ele.currentStyle[alt_property_name];
} else if (window.getComputedStyle) {
property = property.replace(/([A-Z])/g,"-$1").toLowerCase();//backgroundColor becomes background-color
var value = document.defaultView.getComputedStyle(ele,null).getPropertyValue(property);
}
//Some properties are special cases
if(property == "opacity" && ele.filter) value = (parseFloat( ele.filter.match(/opacity\=([^)]*)/)[1] ) / 100);
else if(property == "width" && isNaN(value)) value = ele.clientWidth || ele.offsetWidth;
else if(property == "height" && isNaN(value)) value = ele.clientHeight || ele.offsetHeight;
return value;
},
getPosition:function(ele) {
var x = 0;
var y = 0;
while (ele) {
x += ele.offsetLeft;
y += ele.offsetTop;
ele = ele.offsetParent;
}
if (navigator.userAgent.indexOf("Mac") != -1 && typeof document.body.leftMargin != "undefined") {
x += document.body.leftMargin;
offsetTop += document.body.topMargin;
}
var xy = new Array(x,y);
return xy;
},
/// Called when the user clicks on a date in the calendar.
selectDate:function(year,month,day) {
var ths = _calendar_active_instance;
//localDate = new Date(year,month-1,day);
//localDateStr = localDate.toLocaleString();
//slicedStr = localDateStr.slice(0,localDateStr.lenght);
document.getElementById(ths.opt["input"]).value = day + "/" + month + "/" + year;// Date format is :HARDCODE://localDateStr;//
//document.getElementById(ths.opt["input"]+"1").value = day + "/" + month + "/" + year;//hidden input
ths.hideCalendar();
},
/// Creates a calendar with the date given in the argument as the selected date.
makeCalendar:function(year, month, day) {
year = parseInt(year);
month= parseInt(month);
day = parseInt(day);
//Display the table
var next_month = month+1;
var next_month_year = year;
if(next_month>=12) {
next_month = 0;
next_month_year++;
}
var previous_month = month-1;
var previous_month_year = year;
if(previous_month< 0) {
previous_month = 11;
previous_month_year--;
}
this.wrt("<table>");
this.wrt("<tr><th><a href='javascript:calendar.makeCalendar("+(previous_month_year)+","+(previous_month)+");' title='"+this.month_names[previous_month]+" "+(previous_month_year)+"'><</a></th>");
this.wrt("<th colspan='5' class='calendar-title'><select name='calendar-month' class='calendar-month' onChange='calendar.makeCalendar("+year+",this.value);'>");
for(var i in this.month_names) {
this.wrt("<option value='"+i+"'");
if(i == month) this.wrt(" selected='selected'");
this.wrt(">"+this.month_names[i]+"</option>");
}
this.wrt("</select>");
this.wrt("<select name='calendar-year' class='calendar-year' onChange='calendar.makeCalendar(this.value, "+month+");'>");
var current_year = this.today.getYear();
if(current_year < 1900) current_year += 1900;
for(var i=current_year-70; i<current_year+10; i++) {
this.wrt("<option value='"+i+"'")
if(i == year) this.wrt(" selected='selected'");
this.wrt(">"+i+"</option>");
}
this.wrt("</select></th>");
this.wrt("<th><a href='javascript:calendar.makeCalendar("+(next_month_year)+","+(next_month)+");' title='"+this.month_names[next_month]+" "+(next_month_year)+"'>></a></th></tr>");
this.wrt("<tr class='header'>");
for(var weekday=0; weekday<7; weekday++) this.wrt("<td>"+this.weekdays[weekday]+"</td>");
this.wrt("</tr>");
//Get the first day of this month
var first_day = new Date(year,month,1);
var start_day = first_day.getDay();
var d = 1;
var flag = 0;
//Leap year support
if(year % 4 == 0) this.month_days[1] = 29;
else this.month_days[1] = 28;
var days_in_this_month = this.month_days[month];
//Create the calender
for(var i=0;i<=5;i++) {
if(w >= days_in_this_month) break;
this.wrt("<tr>");
for(var j=0;j<7;j++) {
if(d > days_in_this_month) flag=0; //If the days has overshooted the number of days in this month, stop writing
else if(j >= start_day && !flag) flag=1;//If the first day of this month has come, start the date writing
if(flag) {
var w = d, mon = month+1;
if(w < 10) w = "0" + w;
if(mon < 10)mon = "0" + mon;
//Is it today?
var class_name = '';
var yea = this.today.getYear();
if(yea < 1900) yea += 1900;
if(yea == year && this.today.getMonth() == month && this.today.getDate() == d) class_name = " today";
if(day == d) class_name += " selected";
class_name += " " + this.weekdays[j].toLowerCase();
this.wrt("<td class='days"+class_name+"'><a href='javascript:calendar.selectDate(\""+year+"\",\""+mon+"\",\""+w+"\")'>"+w+"</a></td>");
d++;
} else {
this.wrt("<td class='days'> </td>");
}
}
this.wrt("</tr>");
}
this.wrt("<input type='button' value='Cerrar' class='calendar-cancel' onclick='calendar.hideCalendar();' />");
this.wrt("</table>");
document.getElementById(this.opt['calendar']).innerHTML = this.data.join("");
this.data = [];
},
/// Display the calendar - if a date exists in the input box, that will be selected in the calendar.
showCalendar: function() {
var input = document.getElementById(this.opt['input']);
//Position the div in the correct location...
var div = document.getElementById(this.opt['calendar']);
var xy = this.getPosition(input);
var width = parseInt(this.getStyle(input,'width'));
div.style.left=(xy[0]+width+10)+"px";
div.style.top=xy[1]+"px";
// Show the calendar with the date in the input as the selected date
var existing_date = new Date();
var date_in_input = input.value;
if(date_in_input) {
var selected_date = false;
var date_parts = date_in_input.split("/");
if(date_parts.length == 3) {
date_parts[1]--; //Month starts with 0
selected_date = new Date(date_parts[2], date_parts[1], date_parts[0]);
}
if(selected_date && !isNaN(selected_date.getYear())) { //Valid date.
existing_date = selected_date;
}
}
var the_year = existing_date.getYear();
if(the_year < 1900) the_year += 1900;
this.makeCalendar(the_year, existing_date.getMonth(), existing_date.getDate());
document.getElementById(this.opt['calendar']).style.display = "block";
document.getElementById(this.opt['calendar']).style.zIndex = "30"; // z over Gmap
_calendar_active_instance = this;
},
/// Hides the currently show calendar.
hideCalendar: function(instance) {
var active_calendar_id = "";
if(instance) active_calendar_id = instance.opt['calendar'];
else active_calendar_id = _calendar_active_instance.opt['calendar'];
if(active_calendar_id) document.getElementById(active_calendar_id).style.display = "none";
_calendar_active_instance = {};
},
/// Setup a text input box to be a calendar box.
set: function(input_id) {
var input = document.getElementById(input_id);
if(!input) return; //If the input field is not there, exit.
if(!this.opt['calendar']) this.init();
var ths = this;
input.onclick=function(){
ths.opt['input'] = this.id;
ths.showCalendar();
};
},
/// Will be called once when the first input is set.
init: function() {
if(!this.opt['calendar'] || !document.getElementById(this.opt['calendar'])) {
var div = document.createElement('div');
if(!this.opt['calendar']) this.opt['calendar'] = 'calender_div_'+ Math.round(Math.random() * 100);
div.setAttribute('id',this.opt['calendar']);
div.className="calendar-box";
document.getElementsByTagName("body")[0].insertBefore(div,document.getElementsByTagName("body")[0].lastChild); // firstChild bugs IE
}
}
}
</script>
</head>
<body class=>
<div class="container head">
<div class="head-inner">
<a href="?lang=es"><img style="text-decoration:none; border:none;" class="vallogo" src="img/logo.png" alt=""/></a>
<a href="?consulta=1&lang=es" class="maillink"><img src="img/mail.png" alt="mail"/></a>
<div class="langmenu">
<a href="?lang=es" style="margin-right: 10px; font-size: 10px; font-style: italic;">Home</a>
<a class='selected' href="default.asp?lang=es">Esp</a> |
<a href="default.asp?lang=en">Eng</a> |
<a href="default.asp?lang=de">Deu</a>
</div>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="632" height="248" class="hphoto">
<param name="movie" value="flash.swf">
<param name="quality" value="high">
<PARAM NAME="WMODE" VALUE="transparent">
<embed src="flash.swf" quality="high" WMODE="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="632" height="248" class="hphoto">
</object>
<!--<img class="hphoto" src="<'%=urlImg%>" alt="hphoto"/>
<h2 class="ellugar <'%=classImg%>"><span><img src="<'%=urlImgH2%>" alt="El lugar más bello del mundo" /></span></h2>-->
<!--<h2 class="relais"><a href="<'%=urlRelias%>" target="_blank"><img src="img/relais.gif" alt="relais & chateaux"/></a></h2>-->
</div>
</div>
<div class="container menucon">
<ul class="menu" id="menu">
<!--[if lt IE 7]>
<iframe id="ie6mfix" scrolling="no" frameborder="0"></iframe>
<![endif]-->
<li class="menuitem selected nonclickable"><a>Hotel Valldemossa</a></li>
<li class="menuchild">
<a href="?idprod=78150&idcat=64923&lang=es">Valldemossa</a>
<a href="?idprod=78148&idcat=64923&lang=es">Actividades</a>
<a href="?idprod=64949&idcat=64923&lang=es">Nuestro equipo</a>
<a href="?idprod=64948&idcat=64923&lang=es">Dónde estamos</a>
<a href="?idprod=64950&idcat=64923&lang=es">Familia Relais</a>
</li>
<li class="menuitem nonclickable"><a>Alojamiento</a></li>
<li class="menuchild">
<a href="?idprod=67616&idcat=64927&lang=es">Chopin</a>
<a href="?idprod=67625&idcat=64927&lang=es">Luis Salvador</a>
<a href="?idprod=67623&idcat=64927&lang=es">Miquel Unamuno</a>
<a href="?idprod=67626&idcat=64927&lang=es">Ramón Llull</a>
<a href="?idprod=67628&idcat=64927&lang=es">Rubén Darío</a>
<a href="?idprod=67629&idcat=64927&lang=es">Uetam</a>
<a href="?idprod=67620&idcat=64927&lang=es">Joan Fuster</a>
<a href="?idprod=67619&idcat=64927&lang=es">Jacobo Sureda</a>
<a href="?idprod=67627&idcat=64927&lang=es">Rey Sancho</a>
<a href="?idprod=67617&idcat=64927&lang=es">George Sand</a>
<a href="?idprod=67624&idcat=64927&lang=es">Jovellanos</a>
<a href="?idprod=67618&idcat=64927&lang=es">J. L. Borges</a>
</li>
<li class="menuitem nonclickable"><a>Promociones</a></li>
<li class="menuchild">
<!--<a href="?idsubcat=&idcat=64932&lang="></a>-->
<a href="?idsubcat=77330&idcat=64932&lang=es">Flor de almendro </a>
<!--<a href="?idsubcat=&idcat=64932&lang="></a>-->
<a href="?idsubcat=64933&idcat=64932&lang=es">Luna de miel</a>
<!--<a href="?idsubcat=&idcat=64932&lang="></a>-->
<a href="?idsubcat=80292&idcat=64932&lang=es">Haga un dia a su medida </a>
<!--<a href="?idsubcat=&idcat=64932&lang="></a>-->
<a href="?idsubcat=81818&idcat=64932&lang=es">Date un capricho</a>
<!--<a href="?idsubcat=&idcat=64932&lang="></a>-->
<a href="?idsubcat=81819&idcat=64932&lang=es">Un dia para recordar</a>
</li>
<li class="menuitem "><a href="?slideshow=1&idcatHelp=64936">Galería de fotos</a></li>
<li class="menuitem nonclickable"><a>Restaurante</a></li>
<li class="menuchild">
<a href="?idprod=64955&idcat=64937&lang=es">Carta</a>
<a href="?idprod=65738&idcat=64937&lang=es">Maitre</a>
<a href="?idprod=64956&idcat=64937&lang=es">Chef</a>
<a href="?idprod=64957&idcat=64937&lang=es">Recetas</a>
<a href="?idprod=77914&idcat=64937&lang=es">Bistró 2010</a>
<a href="?idprod=81202&idcat=64937&lang=es">Cursos de cocina</a>
<a href="?idprod=81580&idcat=64937&lang=es">Eventos 2010</a>
</li>
<li class="menuitem "><a href="default.asp?idcat=64942&lang=es">Tarifas</a></li>
<li class="menuitem nonclickable"><a>Wellness </a></li>
<li class="menuchild">
<a href="?idprod=77524&idcat=64943&lang=es">Wellness</a>
<a href="?idprod=77522&idcat=64943&lang=es">Promocion mensual</a>
<a href="?idprod=65681&idcat=64943&lang=es">Masajes</a>
<a href="?idprod=77535&idcat=64943&lang=es">Tratamientos de belleza</a>
</li>
<li class="menuitem "><a href="?consulta=1&idcatHelp=67538">Contacto</a></li>
<li class="menuitem nonclickable"><a>Banquetes</a></li>
<li class="menuchild">
<a href="?idprod=64954&idcat=78176&lang=es">Bodas </a>
<a href="?idprod=78182&idcat=78176&lang=es">Conferencias & reuniones</a>
<a href="?idprod=78181&idcat=78176&lang=es">Info & Reservas</a>
</li>
<li class="menuitem "><a href="http://valldemossahotel.blogspot.com/">Blog</a></li>
<li class="menuitem nonclickable"><a>Regalo</a></li>
<li class="menuchild">
<a href="?idprod=81828&idcat=81822&lang=es">Bonos Wellness</a>
<a href="?idprod=81830&idcat=81822&lang=es">Bonos Hotel</a>
<a href="?idprod=81832&idcat=81822&lang=es">Bono Belleza</a>
</li>
</ul>
<br class="clear"/>
<script type="text/javascript" src="js/dropdown.js"></script>
</div>
<div class="main-wrap">
<div class="main-bottom">
<div class="main-top">
<div class="main-middle">
<div class="leftcon">
<h2><img class="nletter" src="img/r.gif"/>eservar</h2>
<form method="post" action="?lang=es" target="_blank">
<div class="formfields">
<p>Fecha de llegada<br/>
<input class="sel2" value="03/09/2010" type="text" name="arrival" id="arrival"/><!--<a onClick="calendar.showCalendar();" class="calLink" href="#"><img src="img/calendar.gif"/></a>-->
<script type="text/javascript">
calendar.set("arrival");
</script>
</p>
<p>Fecha de salida<br/>
<input class="sel2" value='03/09/2010' type="text" name="departure" id="departure"/>
<script type="text/javascript">
calendar.set("departure");
</script>
</p>
<div class="ffield1">Adultos<br/>
<select name="Adultos" class="sel1">
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<!--<option value="3">3</option>
<option value="4">4</option>-->
</select>
</div>
<br class="clear"/>
<div class="buscar">
<input type="submit" value='Enviar'>
</div>
<br class="clear"/>
</div>
<!-- <input type="hidden" value="" id="arrival1" name="arrival1" />
<input type="hidden" value="" id="departure1" name="departure1" />-->
</form>
</div>
<!--idprod-->
<!--Hotel Valldemossa-->
<div class="midcon">
<h2 class="valign-middle"><img class="nletter" src="img/h.gif" alt="Hotel Valldemossa" title="Hotel Valldemossa"/>otel Valldemossa</h2>
<script type="text/javascript" src="js/ificha.js"></script>
<div class="contentFix"><p align="justify">La finca, en la que tradicionalmente se cultivan diez cuarteradas de olivos y naranjos, ofrece tranquilidad, serenidad y la posibilidad de pasear por ella disfrutando de su carácter rural, muy cerca de la cordillera de Tramuntana y montañas como el Teix y Fátima. El complejo perteneció al antiguo patrimonio de la Cartuja de Valldemossa en el que se hospedaron Frederic Chopin y George Sand, que pasearon por los mismos lugares.</p><p align="justify">El hotel tiene unas características muy especiales: se aparta del concepto comercial tanto como se acerca a lo que es un hogar para recibir a los amigos y alojarles como si descansaran en su propia casa de campo. Confesamos que no nos consideramos hoteleros, sino anfitriones. </p></div>
</div><div class="rightcon">
<h2><img class="nletter" src="img/p.gif"/>romociones</h2>
<p><a href="?idprod=64951&idcat=64932&lang=es">Luna de miel</a></p>
<p><a href="?idprod=77331&idcat=64932&lang=es">Flor de almendro</a></p>
<p><a href="?idprod=80293&idcat=64932&lang=es">Haga un día a su medida</a></p>
<p><a href="?idprod=81820&idcat=64932&lang=es">Date un capricho</a></p>
<p><a href="?idprod=81821&idcat=64932&lang=es">Un dia para recordar</a></p>
<div class="ilcon">
<div class="imglink">
<a href="http://www.valldemossahotel.com/?idprod=77914&idcat=64937&lang=es" class="imglink" target="_self">
<img src="images/banners/banner1.jpg" width="149px" height="52px;"/>
</a>
<!--<div><a href="http://www.valldemossahotel.com/?idprod=77914&idcat=64937&lang=es" class="imglink" target="_self">Restaurante</a></div>-->
</div>
<div class="imglink">
<a href="http://www.valldemossahotel.com/software/wellness esp.pdf" class="imglink" target="_blank">
<img src="images/banners/banner2.jpg" width="149px" height="52px;"/>
</a>
<!--<div><a href="http://www.valldemossahotel.com/software/wellness esp.pdf" class="imglink" target="_blank">Wellness</a></div>-->
</div>
<div class="imglink">
<a href="http://www.valldemossahotel.com/software/FolletoESP.pdf" class="imglink" target="_blank">
<img src="images/banners/folleto.jpg" width="149px" height="52px;"/>
</a>
<!--<div><a href="http://www.valldemossahotel.com/software/FolletoESP.pdf" class="imglink" target="_blank">Folleto</a></div>-->
</div>
</div>
</div>
<br class="clear"/>
<div class="ie7fix"></div>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="?lang=es">Home</a>
| <a class="nonlink">Ctra Vieja de Valldemossa s/n | localidad: Valldemossa | CP. 07170 | T. +34 971.612.626 | F. +34 971 61 26 25</a>
| <a href="?info=1037&lang=es">Créditos</a>
| <a href="?info=1014&lang=es">Profesionales</a>
| <a href="?info=1015&lang=es">Aviso Legal</a>
| <a href="?mapa=1&lang=es">Mapa web</a>
| <a href="?consulta=1&lang=es">Contacto</a>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-8730863-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
<script type="text/javascript" src="js/controlEventos.js"></script>
</body>
</html>
|