Importación inicial

git-svn-id: https://192.168.0.254/svn/Proyectos.VillaDePalacios_Web/trunk@1 91f32c30-4b1a-42e2-b17c-7aeffbb29c96
This commit is contained in:
David Arranz 2010-04-19 08:50:21 +00:00
commit 0b24172697
366 changed files with 4749 additions and 0 deletions

View File

@ -0,0 +1,292 @@
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated. All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
{
var version;
var axo;
var e;
// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
try {
// version will be set for 7.X or greater players
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
version = axo.GetVariable("$version");
} catch (e) {
}
if (!version)
{
try {
// version will be set for 6.X players only
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
// installed player is some revision of 6.0
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
// so we have to be careful.
// default to the first public version
version = "WIN 6,0,21,0";
// throws if AllowScripAccess does not exist (introduced in 6.0r47)
axo.AllowScriptAccess = "always";
// safe to call for 6.0r47 or greater
version = axo.GetVariable("$version");
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 4.X or 5.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = axo.GetVariable("$version");
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 3.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
version = "WIN 3,0,18,0";
} catch (e) {
}
}
if (!version)
{
try {
// version will be set for 2.X player
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
version = "WIN 2,0,0,11";
} catch (e) {
version = -1;
}
}
return version;
}
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
// NS/Opera version >= 3 check for Flash plugin in plugin array
var flashVer = -1;
if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
var descArray = flashDescription.split(" ");
var tempArrayMajor = descArray[2].split(".");
var versionMajor = tempArrayMajor[0];
var versionMinor = tempArrayMajor[1];
var versionRevision = descArray[3];
if (versionRevision == "") {
versionRevision = descArray[4];
}
if (versionRevision[0] == "d") {
versionRevision = versionRevision.substring(1);
} else if (versionRevision[0] == "r") {
versionRevision = versionRevision.substring(1);
if (versionRevision.indexOf("d") > 0) {
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
}
}
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
}
}
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
else if ( isIE && isWin && !isOpera ) {
flashVer = ControlVersion();
}
return flashVer;
}
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
versionStr = GetSwfVer();
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
// Given "WIN 2,0,0,11"
tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
tempString = tempArray[1]; // "2,0,0,11"
versionArray = tempString.split(","); // ['2', '0', '0', '11']
} else {
versionArray = versionStr.split(".");
}
var versionMajor = versionArray[0];
var versionMinor = versionArray[1];
var versionRevision = versionArray[2];
// is the major.revision >= requested major.revision AND the minor version >= requested minor
if (versionMajor > parseFloat(reqMajorVer)) {
return true;
} else if (versionMajor == parseFloat(reqMajorVer)) {
if (versionMinor > parseFloat(reqMinorVer))
return true;
else if (versionMinor == parseFloat(reqMinorVer)) {
if (versionRevision >= parseFloat(reqRevision))
return true;
}
}
return false;
}
}
function AC_AddExtension(src, ext)
{
if (src.indexOf('?') != -1)
return src.replace(/\?/, ext+'?');
else
return src + ext;
}
function AC_Generateobj(objAttrs, params, embedAttrs)
{
var str = '';
if (isIE && isWin && !isOpera)
{
str += '<object ';
for (var i in objAttrs)
{
str += i + '="' + objAttrs[i] + '" ';
}
str += '>';
for (var i in params)
{
str += '<param name="' + i + '" value="' + params[i] + '" /> ';
}
str += '</object>';
}
else
{
str += '<embed ';
for (var i in embedAttrs)
{
str += i + '="' + embedAttrs[i] + '" ';
}
str += '> </embed>';
}
document.write(str);
}
function AC_FL_RunContent(){
var ret =
AC_GetArgs
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
, "application/x-shockwave-flash"
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_SW_RunContent(){
var ret =
AC_GetArgs
( arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
, null
);
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
var ret = new Object();
ret.embedAttrs = new Object();
ret.params = new Object();
ret.objAttrs = new Object();
for (var i=0; i < args.length; i=i+2){
var currArg = args[i].toLowerCase();
switch (currArg){
case "classid":
break;
case "pluginspage":
ret.embedAttrs[args[i]] = args[i+1];
break;
case "src":
case "movie":
args[i+1] = AC_AddExtension(args[i+1], ext);
ret.embedAttrs["src"] = args[i+1];
ret.params[srcParamName] = args[i+1];
break;
case "onafterupdate":
case "onbeforeupdate":
case "onblur":
case "oncellchange":
case "onclick":
case "ondblClick":
case "ondrag":
case "ondragend":
case "ondragenter":
case "ondragleave":
case "ondragover":
case "ondrop":
case "onfinish":
case "onfocus":
case "onhelp":
case "onmousedown":
case "onmouseup":
case "onmouseover":
case "onmousemove":
case "onmouseout":
case "onkeypress":
case "onkeydown":
case "onkeyup":
case "onload":
case "onlosecapture":
case "onpropertychange":
case "onreadystatechange":
case "onrowsdelete":
case "onrowenter":
case "onrowexit":
case "onrowsinserted":
case "onstart":
case "onscroll":
case "onbeforeeditfocus":
case "onactivate":
case "onbeforedeactivate":
case "ondeactivate":
case "type":
case "codebase":
case "id":
ret.objAttrs[args[i]] = args[i+1];
break;
case "width":
case "height":
case "align":
case "vspace":
case "hspace":
case "class":
case "title":
case "accesskey":
case "name":
case "tabindex":
ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
break;
default:
ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
}
}
ret.objAttrs["classid"] = classid;
if (mimeType) ret.embedAttrs["type"] = mimeType;
return ret;
}

93
css.css Normal file
View File

@ -0,0 +1,93 @@
.credits {
font-family: Verdana;
font-size: 9px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #333333;
text-decoration: none
}
.texto {
font-family: Verdana;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #333333;
text-decoration: none
}
.textoNegrita {
font-family: Verdana;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #333333;
text-decoration: none
}
.titulos3 {
font-family: Verdana;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #669900;
text-decoration: none
}
.menu {
font-family: Verdana;
font-size: 14px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #FFFFFF;
text-decoration: none
}
.titulos2 {
font-family: Verdana;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #FFFFFF;
text-decoration: none
}
.titulos1 {
font-family: "Times New Roman", Times, serif;
font-size: 18px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #FFFFFF;
text-decoration: none;
background-color: #669900;
}
.titulos4 {
font-family: "Times New Roman", Times, serif;
font-size: 20px;
font-style: italic;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #669900;
text-decoration: none
}
.menu2 {
font-family: Verdana;
font-size: 14px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
color: #FFCC00;
text-decoration: none
}

304
eng/alojamiento_eng.htm Normal file
View File

@ -0,0 +1,304 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style7 {
color: #FFCC00;
font-size: 14px;
}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td width="682" align="right" bgcolor="#333333"><span class="menu"><a href="home_eng.htm" class="menu">Presentation</a> &middot; <a href="galeria_eng.htm" class="menu">Images </a></span><span class="menu2"><a href="galeria_eng.htm" class="menu2">&middot; </a></span><span class="menu"> <strong class="menu2">Lodging</strong> &middot; <a href="tarifas_eng.htm" class="menu">Prices</a> &middot; <a href="cantabria_eng.htm" class="menu">The region</a> <a href="contacto_eng.htm" class="menu">&middot; Reserves &amp; Contact</a></span></td>
<td width="10" align="right" bgcolor="#333333"></td>
</tr>
</table>
<p><span class="titulos1"><br>
&nbsp;LODGING&nbsp;<br>
<br>
</span><span class="texto">&#8226;<strong> </strong><strong>Eight double rooms</strong> with bathroom; one of them suitable for disabled people<strong>.</strong><br>
&#8226; <strong>Color TV</strong>, tea service and hairdryer available in all rooms.<br>
&#8226; One living-room with chimney, library and sun gallery.<br>
&#8226; Caring service for <strong>pets</strong> (please, consult previously if you want to bring yours).<br>
&#8226; <strong>Private parking. </strong></span>
<br>
<span class="texto">&#8226; <strong>Wireless Internet connection available.</strong></span></p>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p align="center"><span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span></p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="53%" align="left" valign="top">
<p class="titulos4">Services<span class="texto"><br>
<br>
&#8226; Season's menu for lunch or dinners, we offer also a cold meals - snacks menu during all the year.<br>
&#8226; We serve suppers and foods under demand.<br>
&#8226; &nbsp;We can prepare lunch-boxes for excursions.<br>
&#8226; We organize events and meetings .</span><br>
<p><a href="mailto:info@villadepalacios.com"><br>
</a></span></p></td>
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
<td width="46%" align="left" valign="top"><span class="titulos4"><span class="link">Active tourism</span><span class="menu2"><span class="titulos1"></span></span></span> <span class="texto"><br>
<br>
We can contact with different local companies to organize active tourism activities:<br>
<br>
&#8226; &nbsp;<strong>Sports</strong>: <br>
Quads, ballooning, horse-riding, kayak, rafting, cave visiting, 4x4 routes, trekking, etc.<br>
<br>
&#8226; &nbsp;<strong>Culture</strong>: <br>
Visit the Natural Reserve of Santo&ntilde;a's salt marsh (bird's sighting), prehistoric art, romanic, boat visit to the Santo&ntilde;a's bay, etc.<br>
</span></td>
</tr>
</table>
<span class="titulos4">The rooms</span><br>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. The Cow</strong></span><span class="texto"><strong><br>
<br>
</strong> It is oriented to three facades: East, North and Western. It's located in the anexed wing, in the place where the old kitchens of the casona were placed. It has a great terrace with direct exit to the garden. Their comfortable access makes possible to be utilized by a person with reduced mobility, also the bath is designed with this same intention. This room, of colonial style, is very confy.<br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="49%" align="center" valign="top" class="menu"> <img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
<td width="25%" align="center">
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
</tr>
</table></td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="left" class="texto">
<div align="justify"><br>
<strong class="titulos3">2. The Rabbit</strong><br>
<br>
The blue room. It's oriented to two facades, with two large balconies of iron. To the East, it has views to all the valley and to the South the singular mountain called the &quot;<em>Punishment of the rage</em>&quot; that characterizes the Aras' valley.<img src="../img_nav/transp.gif" width="5" height="5"> <br>
<br>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"> </td>
<td align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
</tr>
</table>
</div> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
</strong>
<strong class="titulos3">3. The Rooster</strong><br>
<br>
The orange room. It's oriented to the South , possesses two balconies of forge that give exit to an long terrace. To the entrance of the room there is a distributor framed by a mortar's arch recovered from the time of construction of the house. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top">
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210" hspace="2"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
</strong></span><strong class="titulos3">4. The Cat</strong><br>
<br>
The lilac room. It is oriented to two facades. To the South the view of the mountain, and at the West the farm and the orange's tree with it's fragrance. It has a bath with a great round bathtub and a balcony of forge.<br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top" class="menu">
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210" hspace="2"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
</strong>
<strong class="titulos3">5. The Pig</strong><br>
<br>
The green room. It is a room located in the annex wing where the old kitchens were. It's oriented to two facades. The high ceilings have permitted to build a mezzanine with two beds where the children love to sleep and play. <br>
<br>
</span></font>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></font></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210" hspace="2"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
</strong><strong class="titulos3">6. The Robin</strong><br>
<br>
The ocher room. It is oriented to two facades. At the East, the main facade possesses a small terrace of geraniums with an inscription in stone from the year of construction of the casona (1871). From this terrace you can view the valley and the Virgen de Palacios' hermitage, to the North it has nice views of the mountain. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"> <img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
</strong>
<strong class="titulos3">7. The Goat</strong><br>
<br>
The white room. It is oriented to the South facade with views to the hill called &quot;Punishment of the Rage&quot; and to the garden. It's bath has a small window that was hidden till the rehabilitation and that appeared like a trace of a building previous to 1871. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"> <img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
</tr>
</table></td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="left" class="texto">
<div align="justify"><strong class="titulos3"><br>
</strong>
<strong class="titulos3">8. The Horse</strong><br>
<br>
The yellow room, situated in the low plant, has a very functional use, therefore is thought for persons with reduced mobility. It has an extensive forge window that looks just to the main entrance. The door of entrance gives to the hall and to the parlor, with a ramp for easier access. The bath, very extensive, is also prepared for this function.<br>
<br>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
<td align="center">
<div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
<td align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
</tr>
</table>
</div> </td>
</tr>
<tr>
<td></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

152
eng/cantabria_eng.htm Normal file
View File

@ -0,0 +1,152 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="700" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> &middot; <a href="galeria_eng.htm" class="menu">Images</a> &middot; <a href="alojamiento_eng.htm" class="menu">Lodging</a> <a href="tarifas_eng.htm" class="menu">&middot; Prices</a> &middot; <a href="cantabria_eng.htm" class="menu2">The region</a> &middot; <a href="contacto_eng.htm" class="menu">Reserves &amp; Contact</a> </td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span><a href="../detect_esp.htm"><br>
</a><span class="titulos1">&nbsp;THE REGION: AS&Oacute;N-AG&Uuml;ERA&nbsp;</span></span><br>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td rowspan="2" valign="top" class="texto">
<p align="justify" class="texto"><span class="texto"><em class="titulos3">La villa de Palacios</em> is placed in the northern region of As&oacute;n-Ag&uuml;era, midway between the mountain and the sea.<br>
<br>
<span class="titulos4"> The mountain</span><br>
The region of <strong>As&oacute;n-Ag&uuml;era</strong> is the most unknown of Cantabria. The beauty of its landscapes, paths and routes does of this place an ideal spot for relax and the enjoyment of the nature that reaches its highest point in the Natural Park of Hillocks of the As&oacute;n (in Soba), with exceptional views of the valley and birth of the river of the same name in a spectacular waterfall of 50 meters. The birth of the river G&aacute;ndara, thick forests, numerous routes of great beauty, beautiful rustic villages or the exceptional plateresque altarpiece of the <em>Rozas'</em> church among other architectural wealth. <br>
<br>
<span class="titulos4">The sea</span> <br>
At three kilometers from our hotel begins the <strong>Natural Reserve of the marshes of Santo&ntilde;a</strong>, Victoria and Joyel. A great deal of time ago, the marshes were seen as zones of scarce value, but the science has shown that they are one of the richest ecosystems of the planet. These marshes constitute the main humid zone of the Cantabrian cornice. They occupy 3.866 hectares distributed among the municipal terms of Argo&ntilde;os, B&aacute;rcena of Cicero , Colindres, Escalante, Laredo, Clean, Noja, Santo&ntilde;a and Voto. This singular spot, besides plenty of marine fauna, is utilized for the migratory fowls coming from the north, in its displacement toward warmer lands. In this natural space have been observed, up to date, more than 121 species of aquatic fowls.<br>
<br>
<span class="titulos4">Prehistoric Art</span><br>
Cantabria hoards in its subsoil one of the greater concentrations of caves with art rupestre in Europe. Till today about 50 deposits have been confirmed, but recent discoveries permit to think that this census can grow in the future.<br>
Paying a visit to any of these deposits that are found at few kilometers from our Casona is a perfect activity when the weather is harsh. <br>
<br>
<span class="titulos4">Cities &amp; culture</span><br>
Our Casona is found half distance of Santander and Bilbao. In about 45 minutes you will be in the center of any of these cities and will be able to enjoy the great cultural offering that both have to offer.<br>
<br>
In <strong>Bilbao</strong> you can find the famous <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita"><strong><u>Guggenheim</u></strong></a> museum of modern art and also the very interesting Museum of Fine Arts. But it shall not to be forgotten the Archaeological Museum , the Etnographic and Historic one or the Diocesan Museum.<br>
<br>
In <strong>Santander</strong> you can visit the Prehistory and Archeology Museum, the Nautic Museum , besides the Fine Arts Museum, and the Maritim Museum of Cantabric. <br>
Outside, but not far from Santander we recommend to visit the Altamira's Museum of Santillana, the Nature's Museum in Cabez&oacute;n de la Sal, and the National Park of Cab&aacute;rceno, plenty of wild and exotic species in complete freedom. </span></p>
<p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
<span class="credits"><strong>Guggenheim-Bilbao Museum</strong></span><span class="titulos2"><br>
</span></p></td>
<td width="10" rowspan="2" valign="top"> <img src="../img_nav/transp.gif" width="10" height="10"></td>
<td width="220" valign="top">
<div align="right">
<img src="../img_nav/Fotos/Valle%20de%20Aras.jpg" width="220" height="146"> <span class="credits">Landscape of the <strong> Aras Valley </strong>, with the hotel at the left side.<br>
<br>
</span><img src="../img_nav/Fotos/playa%20de%20Berria.JPG" width="220" height="149"><br>
<span class="credits"><strong>Berria's beach</strong> (Santo&ntilde;a), at 15 km. <br>
<br>
</span> <img src="../img_nav/paisaje6.jpg" width="220" height="146"><br>
<span class="credits">Landscape of <strong>Laredo's beach </strong>, at 10 km. <br>
<br>
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
Fisher's port of<strong> Colindres</strong>.<br>
</span><br>
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
A perfect place for the practice of trekking.
</span><span class="credits"><strong></strong></span><br>
</div> </td>
</tr>
<tr>
<td valign="top">
<div align="right">
<p><span class="titulos3"><strong><br>
<font size="2" face="Verdana">Some useful web-site</font></strong><font size="2" face="Verdana">s</font><br>
</span></span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<br>
</a><a href="http://www.altoason.com" target="_blank" class="textoNegrita">www.altoason.com<br>
</a><a href="http://www.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
www.cantabria.com</a><br>
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<br>
</a><a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita">www.guggenheim-bilbao.es</a></p>
</div></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

129
eng/contacto_eng.htm Normal file
View File

@ -0,0 +1,129 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_eng.htm" class="menu">Presentation</a> <a href="galeria_eng.htm" class="menu"> &middot; Images </a>&middot; <a href="alojamiento_eng.htm" class="menu">Lodging</a> <a href="tarifas_eng.htm" class="menu">&middot; Prices</a> &middot; <a href="cantabria_eng.htm" class="menu">The region</a> &middot; <a href="contacto_eng.htm" class="menu2">Reserves&amp; Contact</a> </span></td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
</a><span class="titulos1">
&nbsp;RESERVES &amp; CONTACT&nbsp;</span></span><br>
<br>
<table width="100%" border="0">
<tr valign="top">
<td width="42%" class="texto"><p>To make a reservation or receive more information, please do not hesitate to contact us by phone <br>
or e-mail.<br>
<span><br>
<a href="mailto:info@villadepalacios.com" class="titulos3">
info@villadepalacios.com</a><br>
<br>
</span><span class="titulos3">Barrio Palacios 150<br>
San Miguel de Aras. Voto <br>
39766 - Cantabria<br>
<br>
Tel. 942 679 150 <br>
Mov. 627 030 030 <br>
</span></p>
<p align="left"><span class="puntitos"><strong>To reach the hotel:</strong><br>
Take the way out at the Km. 177 (Treto-Cicero) from the motorway Santander-Bilbao. <br>
Go in direction <em>Treto</em> and soon you will see indications to SAN MIGUEL DE ARAS. There's about 9 Km. from motorway to the hotel &#8220;La Villa de Palacios&#8221;.</span></blockquote></p> </td>
<td height="222" colspan="2"> <div align="center">
<p><a href="#"><img src="../img_nav/mapa.jpg" alt="Pulse para ampliar el mapa" width="450" height="332" border="0" onClick="MM_openBrWindow('../img_nav/mapa_grande.htm','Mapa','toolbar=yes,menubar=yes,resizable=yes,width=620,height=500')"><br>
</a><a href="#"><span class="titulos3">How to reach us: 45 minutes from Bilbao or Santander</span></a><span class="titulos3">. </span><span class="puntitos"><br>
</span><span class="credits">Click on the image to get a larger view and print.</span></p>
</div></td>
</tr>
</table>
<p align="center"><span class="titulos4">G.P.S. Coordinates</span><br>
<span class="textoNegrita"><strong>Longitud</strong></span><strong>e: </strong> W03 degrees&nbsp;&nbsp; 30 minutes&nbsp; 57 seconds.<BR>
<strong>Latitude: </strong>N43 degrees&nbsp; 19 minutes 52 seconds.</p>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

125
eng/galeria2_eng.htm Normal file
View File

@ -0,0 +1,125 @@
<html>
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
.style1 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #FFFFFF; text-decoration: none; font-family: Verdana;}
.style2 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
body {
background-color: #DCDCB8;
}
-->
</style>
</head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0" bgcolor="#999999">
<tr>
<td align="right" valign="top" height="487">
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<tr>
<td>
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
<tr align="left" valign="top">
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="23" rowspan="3">&nbsp;</td>
<td width="280" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/DSC08200.JPG" width="280" height="373" border="0"></td>
<td width="6" rowspan="3">&nbsp;</td>
<td width="280" valign="top"><br> <img src="../img_nav/nueva%20galeria/INTERIORES2.JPG" width="280" height="210" border="0"></td>
<td width="12" rowspan="3" valign="top">&nbsp;</td>
<td width="12" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA5.JPG" width="280" height="373" border="0"></td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="23" rowspan="3">&nbsp;</td>
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/ENTORNO.JPG" width="280" height="210" border="0"></td>
<td width="6" rowspan="3">&nbsp;</td>
<td width="280" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/INTERIORES%207.JPG" width="280" height="373" border="0"></td>
<td width="12" rowspan="3" valign="top">&nbsp;</td>
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
</tr>
<tr>
<td width="280" valign="middle">&nbsp;</td>
<td width="12" valign="middle">&nbsp;</td>
</tr>
<tr>
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20FINCA6.JPG" width="280" height="210" border="0"><br> <br> </td>
<td width="12" valign="top"><img src="../img_nav/nueva%20galeria/DSC08342.JPG" width="280" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

192
eng/galeria_eng.htm Normal file
View File

@ -0,0 +1,192 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style4 {font-style: italic}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_eng.htm" class="menu">Presentation</a></span> <span class="menu"><a href="galeria_eng.htm" class="menu2">&middot;Images</a> <a href="alojamiento_eng.htm" class="menu">&middot;Lodging</a> <a href="tarifas_eng.htm" class="menu">&middot;Prices</a> <a href="cantabria_eng.htm" class="menu">&middot;The region</a> <a href="contacto_eng.htm" class="menu">&middot;Reserves &amp; Contact</a> </span></td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="titulos1"><br>
&nbsp;IMAGES GALLERY&nbsp;</span></span><span class="texto"><br>
<br>
Here you can see some photographs of the Hotel and the property. You will find some images of the rooms in the section</span><a href="alojamiento_eng.htm" class="titulos3"> Rooms.</a></span><br>
<br>
<table width="100%" border="0">
<tr>
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
<tr>
<td width="90%" valign="top"><span class="titulos4">Indoors</span> <span class="textoNegrita">Common areas</span></td>
<td width="10%" valign="bottom">
<div align="right"></div></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES3.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES6.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table> <br>
<table width="100%" border="0">
<tr>
<td width="93%" valign="top"><span class="titulos4">The casona </span><span class="textoNegrita">A hotel full of details</span></td>
<td width="7%" valign="bottom">
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA7.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA12.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08227.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08236.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table> <br>
<table width="100%" border="0">
<tr>
<td width="93%" height="25" valign="top"><span class="titulos4"><span class="textefotos"><strong class="textefotos">The property</strong></span> </span><span class="textoNegrita">8.000 square meters to relax </span></td>
<td width="7%" valign="bottom">
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08252.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA5.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA1.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<p><span class="menu2"> <a href="#" class="textoNegrita"><span onClick="MM_openBrWindow('../esp/galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')">Click </span></a></span><a href="#" class="textoNegrita"><span class="titulos3" onClick="MM_openBrWindow('../esp/galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')">here</span></a><span class="menu2"><a href="#" class="textoNegrita"><span onClick="MM_openBrWindow('../esp/galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')"> to see more images </span></a> <br>
<br>
</span></p></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

160
eng/home_eng.htm Normal file
View File

@ -0,0 +1,160 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_showHideLayers() { //v6.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
<style type="text/css">
<!--
.style1 {font-size: 14px}
.style5 {color: #003300}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right" bgcolor="#333333"><span class="menu"><span class="menu2">Presentation</span> <a href="galeria_eng.htm" class="menu">&middot;Images</a> <a href="alojamiento_eng.htm" class="menu">&middot;Lodging</a> <a href="tarifas_eng.htm" class="menu">&middot;Prices</a> <a href="cantabria_eng.htm" class="menu">&middot;The region </a> <a href="contacto_eng.htm" class="menu">&middot;Reserves &amp; Contact</a> </span></td>
<td width="19" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0">
<tr>
<td width="33%" valign="bottom"><span><span class="titulos1">&nbsp;</span><span><span class="titulos1">WELCOME</span></span><span class="titulos1">&nbsp;</span></span>
<span class="titulos3 style13"></span></td>
</tr>
</table>
<span></span><br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="48%" valign="top" class="texto"><div align="justify"><strong class="titulos3">La Villa de Palacios</strong> hotel, placed near Laredo, is the perfect destine for your holidays thanks to its placement in the privileged lands of the Voto's manor. Surroundend by nice mountains, leafy woods and just 15 minutes from the beach. <br>
<br>
It's also well communicated and full of leisure posibilities, at 40 minutes form the main towns of <strong>Bilbao</strong> (location of the famed <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita"><u>Guggenhaim Museum</u></a>) and <strong>Santander</strong>. <br>
<br>
<strong>A wide gardened land of 8.000 m&sup2;</strong>, full of walnuts, chestnuts and cherry trees frames the <strong>country hotel</strong> La Villa de Palacios, offering to the guest a comfort in consonance with its privileged landscape views to the Aras valley.<br>
<br>
<strong>Make an escapade </strong>and enjoy the best of country sightseeing near the best beaches of Cantabria. Pay a visit to the Natural Reserve Swamps of Santo&ntilde;a, or practice some trekking, speleology and adventure sports in the neighboring mountains.<span class="titulos2"></span><br>
</div></td>
<td width="52%" height="289" valign="middle"> <div align="right">
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
<span class="titulos4"><br>
Welcome to the Villa de Palacios***</span><br>
<br>
<span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span><br>
</p>
</div></td>
</tr>
<tr align="left" valign="top">
<td height="108" colspan="2" class="texto"> <br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
<td width="65%" valign="top" class="texto"><span class="palacios">La Villa de Palacios holds the category of <em>&quot;Casonas (country hotels) and Palaces of Cantabria&quot;</em> the clasification for rural establishments that list the buildings of special architectural values.<br>
<br>
Outside and inside, decoration and furniture correspond in quality and comfort to the level of a tradicional palace. Casonas and Palacios must maintain standars at least equivalent to any 3 stars hotel.</span><a href="http://www.calidadcantabria.com" target="_blank" class="titulos3"><br>
www.calidadcantabria.com</a> </td>
</tr>
</table></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

36
eng/pop-up offer.htm Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:::Special Offers:::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#333333" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="381" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
<tr>
<td width="68" align="left" valign="top" background="../img_nav/hoja.gif">
<div align="center" class="credits"><img src="../img_nav/transp.gif" width="68" height="43"></div></td>
<td width="313" align="left" valign="middle" bgcolor="#333333" class="credits"><font size="4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Winter
promotions </font></td>
</tr>
<tr>
<td colspan="2" class="texto">
<div align="center">
<p><br>
<span class="credits"><font size="3"><font size="2"><strong><font size="3">3x2</font></strong></font></font></span><font size="2">
- Stay for <strong>3 nights</strong> pay <strong>just 2</strong>.<strong><br>
</strong>or<br>
<span class="credits"><strong><font size="3">Free dinner </font></strong></span>-
We invite you to a free dinner with <strong>2 night</strong> bookings.
</font></p>
<p class="menu"><span class="commentaires">Book now, the promotions are
vaild only until <strong>31 of March</strong> <br>
(and not during the holidays of San Jose 18-21 March).</span><br>
<br>
</p>
</div></td>
</tr>
</table>
</body>
</html>

77
eng/promotions.htm Normal file
View File

@ -0,0 +1,77 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:::Special Offers:::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #CCCC99;
}
-->
</style></head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
<tr align="center" valign="middle" bgcolor="#FFFFFF">
<td height="20" colspan="2">
<div align="center" class="credits"></div>
<div align="center"><font size="4"><span class="textefotos"><font size="4"><img src="../img_nav/flecha.gif" width="14" height="14"></font>July promotions <font size="4"><img src="../img_nav/transp.gif" width="10" height="30" border="0"></font></span></font></div></td>
</tr>
<tr>
<td colspan="2" class="texto"><div align="left"><br>
</div></td>
</tr>
<tr>
<td width="81" align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">75 &euro;</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong> </strong></font></span></font></font><span class="puntitos"><strong><br>
<strong>each person</strong></strong></span></td>
<td width="419" valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">COUPLE </font></strong></font></font></span><span class="textefotosblanc">Promotion</span><br>
<span class="textoNegrita">Included:<br>
- Welcome present<br>
- 2 hotel nights<br>
- 2 breakfast<br>
- 1 romantic dinner<br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80 &euro;</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong> </strong></font></span></font></font><span class="puntitos"><strong><br>
<strong>each person</strong></strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">SPORT promotion </font></strong></font></font></span><br> <span class="textoNegrita">Included:<br>
- 2 hotel nights<br>
- 2 breakfast<br>
- 1 QUAD ride trough the Aras Valley</span><span class="textoNegrita"> or cave exploration <br>
(diferent levels) <br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 &euro;</font></strong></font></font></span><br>
<span class="puntitos"><strong> total</strong></span> <span class="puntitos"><strong><br>
</strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">FAMILY 4 promotion </font></strong></font></font></span><font size="2">&nbsp;</font><br>
<span class="textoNegrita">promotion A (4 persons):<br>
- 2 nights in double room<br>
- 2 added beds<br>
- 4 breakfast</span><span class="textoNegrita"><br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 &euro;<br>
</font></strong></font></font></span><span class="puntitos"><strong> total<br>
</strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">FAMILY 6 promotion </font></strong></font></font></span><font size="2">&nbsp;</font><br>
<span class="textoNegrita">promotion B (6 persons):</span><span class="textoNegrita"><br>
- 2 nights in 2 double room<br>
- 2 added beds<br>
- 6 breakfast</span><span class="textoNegrita"><br>
</span></td>
</tr>
<tr>
<td colspan="2" class="commentaires"><div align="center"><br>
This promotions are valid until 29th July, 7% V.A.T. not included.<br>
<br>
</div></td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,228 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style12 { line-height: normal;
font-variant: normal;
color: #FFFFFF;
text-decoration: none;
background-color: #669900;
font-family: "Times New Roman", Times, serif;
font-size: 18px;
font-style: italic;
}
.style15 {font-size: 10px}
.style8 { font-size: 14px;
font-weight: bold;
}
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
-->
</style>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style>
</head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
<tr>
<td align="right" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> <a href="galeria_eng.htm" class="menu">Images</a> <a href="alojamiento_eng.htm" class="menu">Rooms</a> <a href="tarifas_eng.htm" class="menu2">Prices</a> <a href="cantabria_eng.htm" class="menu">The region </a> <a href="contacto_eng.htm" class="menu">Reserves &amp; Contact</a> </td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="texto"><a href="../detect_esp.htm" class="link"><br>
</a><span class="menu2"><span class="titulos1">&nbsp;PRICES&nbsp;</span></span><br>
<br>
Accommodation prices<br>
<br>
</span>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="26%" bgcolor="#DCDCB8">&nbsp;</td>
<td width="20%">
<div align="center">
<p class="titulos3"><strong>Single</strong></p>
</div></td>
<td width="20%">
<div align="center" class="titulos3">Double</div></td>
<td width="20%">
<div align="center" class="texto">Added bed </div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
<span class="texto">(1 October - 1 Juny)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">50 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">58 &euro;</p>
</div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">16 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
<span class="texto">(1- Juny - 15 July | 15 - 30 September)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">62 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">72 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">21 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
<span class="texto">(15 July - 15 September <br>
+ Easter <br>
+ Christmas <br>
+ National holidays )</span> </td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">76 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">88 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">25 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">&gt;&gt; Informaci&oacute;n y reservas</a></td>
</tr>
</table>
<span class="texto"><br>
<strong class="titulos4">Prices full reservation</strong><br>
<br>
For groups, family celebrations, seminars and profesional activities, this mode means the right to reserve the entire hotel in exclusive. Not valid during August. <br>
<br>
</span><table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="21%">
<div align="center">
<p class="textoNegrita">&nbsp;</p>
</div></td>
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
(each night) </span></span></p></td>
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
(each person)</span></td>
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
</span><span class="style16">(optional) </span></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" valign="middle" class="textoNegrita"><span class="texto"><strong class="titulos3">Low season </strong><br>
(1 October - 30 June)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>373</strong> <strong>&euro; </strong></div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">16 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" valign="middle" class="titulos3"><span class="texto">Medium Season <br>
(1- 15 July | <br>
1 -30 September)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>471</strong> <strong>&euro;</strong> </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">21 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" valign="middle" class="menu2"><span class="texto">High season <br>
(16 July-31 August <br>
+ Easter <br>
+ Christmas <br>
+ National holidays) </span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>582</strong> <strong>&euro;</strong> </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">25 &euro;</p>
</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="89" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td height="26" colspan="6" align="left" valign="middle" bgcolor="#FFFFFF"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">&gt;&gt; Information and reserves</a></span></td>
</tr>
</table>
<span class="texto"><br>
&#8226; In High and Medium seasons, minimun stances are 2 nights.<br>
&#8226; Hotel counts with 8 double-rooms. The full reservation can include the use of the hotel's kitchen at the prices above indicated. <br>
&#8226; If you want to bring your pet, please ask previously. <br>
<strong>(7% VAT not included)</strong></span><!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><span class="texto"><img src="../img_nav/hoja.gif" width="76" height="40"></span></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

323
eng/tarifas_eng.htm Normal file
View File

@ -0,0 +1,323 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style12 { line-height: normal;
font-variant: normal;
color: #FFFFFF;
text-decoration: none;
background-color: #669900;
font-family: "Times New Roman", Times, serif;
font-size: 18px;
font-style: italic;
}
.style15 {font-size: 10px}
.style8 { font-size: 14px;
font-weight: bold;
}
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style>
</head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
<tr>
<td align="right" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> <a href="galeria_eng.htm" class="menu">&middot; Images</a> &middot; <a href="alojamiento_eng.htm" class="menu">Lodging</a> <a href="tarifas_eng.htm" class="menu2">&middot; Prices</a> <a href="cantabria_eng.htm" class="menu">&middot; The region </a> <a href="contacto_eng.htm" class="menu">&middot; Reserves &amp; Contact</a> </td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td colspan="4" bgcolor="#DCDCB8">
<div align="center">
<p class="style12">::: Winter Season Promotions::: </p>
</div></td>
</tr>
<tr align="center" valign="top">
<td width="20%" height="199" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3"><br>
ROMANTIC<br>
w</strong><strong class="titulos3">eekend</strong><br>
<strong class="style8">73 &euro; </strong><br>
<span class="texto">each person </span> </div></td>
<td width="28%" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Incluye:<br>
<br>
- </strong>Welcome gift <br>
- 2 nights <br>
- 2 breakfast<br>
- 1 romantic dinner </p>
<ul>
</ul>
</div></td>
<td width="17%" height="199" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3"><br>
SPORT </strong><strong class="titulos3">w</strong><strong class="titulos3">eekend</strong><br>
<strong class="style8">79 &euro; </strong><br>
<span class="texto">each person </span> </div></td>
<td width="35%" align="left" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Incluye:<br>
<br>
- </strong>2 nights<br>
- 2 breakfast<br>
<br>
<strong>one sport activity, <br>
to choose between:<br>
</strong>* 1 quad rute thru the Aras Valley <br>
* Kayak sailing down the As&oacute;n river <br>
* Cave exploring </p>
<ul>
</ul>
</div></td>
</tr>
<tr align="center" valign="top">
<td height="115" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3">FAMILY 4</strong><br>
<strong class="style8">140 &euro; </strong><br>
<span class="texto">Total</span> </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>For 4 persons </strong></p>
<p align="left">2 nights in double-room<br>
+ 2 added beds<br>
+ 4 breakfast </p>
<ul>
</ul>
</div></td>
<td height="115" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3">FAMILY 6 </strong><br>
<strong class="style8">250 &euro; </strong><br>
<span class="texto">Total</span> </div></td>
<td align="left" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>For 6 persons<br>
<br>
</strong>2 nights in double-room<br>
+ 2 added beds<br>
+ 6 breakfast</p>
<ul>
</ul>
</div></td>
</tr>
<tr align="center" valign="middle">
<td height="115" align="center" valign="top" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos4 style14">OFFER<br>
3x2 <br>
</strong><strong class="style8">140 &euro; </strong><br>
<span class="texto">Total</span> <strong class="titulos4 style14"> </strong><br>
</div></td>
<td valign="top" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>For 2 days of stance the third goes free</strong><span class="style15"><strong> </strong>(can't be used with other promotions. Does not include breakfast) </span></p>
<ul>
</ul>
</div></td>
<td height="2" colspan="2" align="left" valign="top" bgcolor="#EEEEDB" class="titulos3"><span class="texto"><strong>Make your reservation now. </strong><br>
This offers depend on availability and they are valid for any day (except National Holidays and Christmas) until 30/06 <br>
<br>
</span><span class="texto">* 7% V.A.T not included. </span>
<div align="center"></div></td>
</tr>
<tr align="center" valign="middle">
<td height="26" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">&gt;&gt; Info &amp; reservations </a></span></td>
</tr>
</table>
<span class="texto"><a href="../detect_esp.htm" class="link"><br>
</a><span class="menu2"><span class="titulos1">&nbsp;PRICES&nbsp;</span></span><br>
<br>
Accommodation prices<br>
<br>
</span>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="26%" bgcolor="#DCDCB8">&nbsp;</td>
<td width="20%">
<div align="center">
<p class="titulos3"><strong>Single</strong></p>
</div></td>
<td width="20%">
<div align="center" class="titulos3">Double</div></td>
<td width="20%">
<div align="center" class="texto">Added bed </div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
<span class="texto">(16 sepetember - 31 may)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">55 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">65 &euro;</p>
</div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">16 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
<span class="texto">(1 juny - 14 july)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">67 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">79 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">21 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
<span class="texto">(15 July - 15 September <br>
+ Easter <br>
+ Christmas <br>
+ National holidays )</span> </td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">83 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">96 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">25 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">&gt;&gt; Info &amp; reservations</a></span></td>
</tr>
</table>
<span class="texto"><br>
<strong class="titulos4">Prices full reservation</strong><br>
<br>
For groups, family celebrations, seminars and profesional activities, this mode means the right to reserve the entire hotel in exclusive. Not valid during August. <br>
<br>
</span><table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="21%">
<div align="center">
<p class="textoNegrita">&nbsp;</p>
</div></td>
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
(each night) </span></span></p></td>
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
(each person)</span></td>
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
</span><span class="style16">(optional) </span></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
<span class="texto">(16 sepetember - 31 may)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>373</strong> <strong>&euro; </strong></div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">16 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="titulos3"> Medium season <br>
<span class="texto">(1 juny - 14 july)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>471</strong> <strong>&euro;</strong> </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">21 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="titulos3"> High season <br>
<span class="texto">(15 July - 15 September <br>
+ Easter <br>
+ Christmas <br>
+ National holidays )</span> </td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>582</strong> <strong>&euro;</strong> </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">25 &euro;</p>
</div></td>
<td bgcolor="#EEEEDB" class="texto">5,60 &euro;</td>
<td height="89" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">10 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td height="26" colspan="6" align="left" valign="middle" bgcolor="#FFFFFF"><span class="titulos3"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">&gt;&gt; Info &amp; reservations</a></span></span></td>
</tr>
</table>
<span class="texto"><br>
&#8226; In High and Medium seasons, minimun stances are 2 nights.<br>
&#8226; Hotel counts with 8 double-rooms. The full reservation can include the use of the hotel's kitchen at the prices above indicated. <br>
&#8226; If you want to bring your pet, please ask previously. <br>
<strong>(7% VAT not included)</strong></span><!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><span class="texto"><img src="../img_nav/hoja.gif" width="76" height="40"></span></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

309
esp/alojamiento_esp.htm Normal file
View File

@ -0,0 +1,309 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style2 { font-size: 9px;
color: #C0C0C0;
}
.style8 {color: #333333}
.style8 {color: #666666}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td align="right" valign="baseline" bgcolor="#333333"><div align="left"><span class="credits">T</span><span class="titulos3 style2"><span class="titulos3 style4"><span class="style2"><span class="style8">Tel. 942 679 150</span> </span></span></span></div></td>
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_esp.htm" class="menu">Presentaci&oacute;n </a>&middot;<a href="galeria_esp.htm" class="menu">Fotograf&iacute;as</a> </span><span class="menu2">&middot;</span><span class="menu"><a href="alojamiento_esp.htm" class="menu2">Alojamiento </a>&middot;<a href="tarifas_esp.htm" class="menu">Tarifas</a> &middot;</span><a href="cantabria_esp.htm" class="menu">La Comarca</a><span class="menu"> &middot;<a href="contacto_esp.htm" class="menu">Reserva y Contacto</a> </span></td>
<td bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<p><span class="titulos1">
<br>
&nbsp;ALOJAMIENTO&nbsp;<br>
<br>
</span><span class="texto">&#8226;<strong> Ocho habitaciones</strong> dobles con ba&ntilde;o;
una de ellas apta para personas con <strong>movilidad reducida</strong>.<br>
&#8226; <strong>Televisi&oacute;n</strong>, servicio
de t&eacute; y secador en todas las habitaciones.<br>
&#8226; Un sal&oacute;n con chimenea, una sala de lectura y solana. <br>
&#8226; Servicio de guarder&iacute;a para <strong>animales</strong>
(consulte previamente si desea traer a su mascota).<br>
&#8226; <strong>Aparcamiento propio</strong>.</span><br>
<span class="titulos4"><span class="texto">&#8226; <strong>Conexi&oacute;n inal&aacute;mbrica a internet.</strong></span></span></p>
<p align="center"><span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span></p>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="53%" align="left" valign="top">
<p class="titulos4">Servicios
<span class="texto"> <br><br>
&#8226; Consulte nuestras <a href="tarifas_esp.htm" class="titulos3">tarifas</a> especiales para empresas y grupos.<br>
&#8226; Disponemos de habitaciones especiales para personas
con problemas de movilidad.<br>
&#8226; Preparamos reuniones y celebraciones familiares
o de empresas.<br>
&#8226; Servicio de comedor: men&uacute; de temporada o
por encargo (14,50 &euro; IVA incluido), carta de
picoteo y bolsa de picnic.<br>
&#8226; Bar de uso exclusivo para nuestros hu&eacute;spedes.<br>
&#8226; Consulte nuestras promociones. </span></td>
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
<td width="46%" align="left" valign="top"><span class="titulos4">Actividades</span> <span class="texto"><br>
<br>
Contactamos con diversas
empresas de la comarca (la oferta var&iacute;a seg&uacute;n
temporada) para organizar actividades:<br>
<br>
&#8226;</span><span class="textoNegrita"> Deportivas</span><span class="texto">: <br>
Quads, vuelos en
globo, paseos a caballo, pirag&uuml;ismo, rafting,
espeleolog&iacute;a, rutas en todoterreno, senderismo.<br>
<br>
&#8226; </span><span class="textoNegrita">Culturales</span><span class="texto">: <br>
Visitas a la Reserva
Natural de las Marismas de Santo&ntilde;a (observaci&oacute;n
de aves), arte rupestre, rom&aacute;nico, observaci&oacute;n
de la naturaleza, paseos en barco por la Bah&iacute;a
de Santo&ntilde;a, etc.<br>
</span>
</p></td>
</tr>
</table>
<span class="titulos4">Las habitaciones </span><br>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. La vaca</strong></span><span class="texto"><strong><br>
</strong></span><strong><span class="texto"><br>
</span></strong><span class="texto">La habitaci&oacute;n crema. Est&aacute; orientada a tres fachadas: Este, Norte y Oeste. Ubicada en el ala anexa, en el lugar donde estuvieron las antiguas cocinas de la casona, dispone de una gran terraza con salida directa al jard&iacute;n. Su c&oacute;modo acceso hace que esta habitaci&oacute;n pueda ser utilizada por personas con movilidad reducida por lo que el ba&ntilde;o est&aacute; dise&ntilde;ado con esta misma intenci&oacute;n. Esta habitaci&oacute;n de estilo colonial resulta muy acogedora.<br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="49%" align="center" valign="top" class="menu"> <img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
<td width="25%" align="center">
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
</tr>
</table></td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="left" class="texto">
<div align="justify"><strong class="titulos3"><br>
2. El Conejo</strong><br>
<br>
La habitaci&oacute;n azul. Est&aacute; orientada a dos fachadas, con dos grandes balcones de rejer&iacute;a. Al Este, se ve todo el valle y al Sur la singular monta&ntilde;a llamada el Castigo de la Rabia.<br>
<br>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"> </td>
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
</tr>
</table>
</div> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
3. El Gallo</strong><br>
<br>
La habitaci&oacute;n naranja. Orientada al Sur, posee dos amplios balcones de rejer&iacute;a que dan salida a una amplia terraza y est&aacute; decorada en un precioso estilo colonial donde destaca el arco de entrada en ladrillo visto. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top">
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
4. El Gato</strong></span><strong><br>
</strong><br>
La habitaci&oacute;n lila. Est&aacute; orientada a dos fachadas. Al Sur la vista del Castigo de la Rabia y al Oeste las monta&ntilde;as del Mullir y la finca. Tiene un ba&ntilde;o con balc&oacute;n de rejer&iacute;a y con una gran ba&ntilde;era redonda.<br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top" class="menu">
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
5. El Chon</strong><br>
<br>
La habitaci&oacute;n verde, ubicada en un ala anexa del edificio principal. Sus altos techos han permitido sacar un camarote en el alto, con dos camitas que hacen las delicias de los ni&ntilde;os. <br>
<br>
</span></font>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></font></div></td>
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
6. El Petirrojo</strong><br>
<br>
La habitaci&oacute;n ocre. Est&aacute; orientada a dos fachadas. Al Este, la fachada principal, posee una peque&ntilde;a terraza plena de geranios con una inscripci&oacute;n en piedra del a&ntilde;o de construcci&oacute;n de la casona (1871) desde la que se divisa el valle y la ermita de la Virgen de Palacios. Al Norte tiene bonitas vistas a la monta&ntilde;a. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"> </div>
<img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
7. La cabra</strong><br>
<br>
La habitaci&oacute;n blanca. Est&aacute; orientada a la fachada Sur con vistas al Castigo de la Rabia y al jard&iacute;n. Se ubica en la antigua zona de servidumbre de la casona. El ba&ntilde;o tiene una ventanita que estuvo escondida hasta la rehabilitaci&oacute;n y que apareci&oacute; como un vestigio de una edificaci&oacute;n anterior a 1871. <br>
<br>
</span>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top">
<img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></div></td>
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
</tr>
</table> </td>
</tr>
<tr>
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
</tr>
<tr>
<td><div align="left" class="texto">
<div align="justify"><strong class="titulos3"><br>
8. El caballo</strong><br>
<br>
La habitaci&oacute;n amarilla. Esta habitaci&oacute;n, situada en la planta baja, tiene un uso muy funcional pues est&aacute; pensada para personas con movilidad reducida. Tiene un amplio ventanal de rejer&iacute;a que asoma justo a la cancela de la entrada principal en la fachada Este. La puerta de entrada da al vest&iacute;bulo y al sal&oacute;n con una rampa de acceso a &eacute;ste &uacute;ltimo. El ba&ntilde;o, muy amplio, est&aacute; tambi&eacute;n preparado para esta funci&oacute;n. <br>
<br>
</div>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
<td width="25%" align="center"> <div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
<td width="25%" align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
</tr>
</table>
</div> </td>
</tr>
<tr>
<td></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

BIN
esp/button1.swf Normal file

Binary file not shown.

232
esp/cantabria_esp.htm Normal file
View File

@ -0,0 +1,232 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style2 { font-size: 9px;
color: #C0C0C0;
}
.style7 {color: #333333}
.style8 {color: #666666}
.style9 {font-size: 9px}
.style10 {color: #FFFFFF}
.style14 {
font-size: 9px;
font-style: italic;
line-height: normal;
font-variant: normal;
color: #333333;
text-decoration: none;
font-family: Verdana;
font-weight: bold;
}
.style18 {font-size: 12px}
.style15 { font-size: 11px;
font-style: italic;
}
-->
</style>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object>
<table width="700" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="101" align="right" valign="baseline" bgcolor="#333333"><div align="left"><span class="titulos3 style2"><span class="titulos3 style4"><span class="style2"><span class="style8"><span class="style7">T</span>Tel. 942 679 150</span> </span></span></span></div></td>
<td width="589" align="right" bgcolor="#333333"><span class="menu"><a href="home_esp.htm" class="menu">Presentaci&oacute;n</a>&middot;<a href="galeria_esp.htm" class="menu">Fotograf&iacute;as</a>&middot;<a href="alojamiento_esp.htm" class="menu">Alojamiento</a>&middot;<a href="tarifas_esp.htm" class="menu">Tarifas</a>&middot;</span><a href="cantabria_esp.htm" class="menu2"> La Comarca</a></span><span class="menu"> &middot;<a href="contacto_esp.htm" class="menu">Reserva y
Contacto</a> </span></td>
<td width="10" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span><a href="../detect_esp.htm"><br>
</a><span class="titulos1">&nbsp;LA COMARCA: AS&Oacute;N-AG&Uuml;ERA&nbsp;</span></span><br>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="438" rowspan="2" valign="top" class="texto">
<p align="justify" class="texto"><em class="titulos3">La
villa de Palacios</em> est&aacute; situada en la comarca
<strong>As&oacute;n-Ag&uuml;era</strong>, <br>
a medio camino
entre la monta&ntilde;a y el mar.<br>
<br>
<span class="credits"><a href="contacto_esp.htm" target="_blank" class="titulos3 style9"><span class="style10">oooooooooooooooooooooooooooooooooooooo</span></a></span><span class="credits"><a href="contacto_esp.htm" target="_blank" class="titulos3 style9"><span class="style15">&gt;&gt; Ver SITUACI&Oacute;N de la CASONA</span></a><br>
</span> <span class="titulos3 style18"><br>
</span><span class="titulos4">La monta&ntilde;a</span><br>
La comarca de <strong>As&oacute;n-Ag&uuml;era</strong>
es la m&aacute;s desconocida de Cantabria. La belleza
indiscutible de sus paisajes, sendas y rutas hace de
este lugar un paraje ideal para el descanso y el disfrute
de la naturaleza que alcanza su m&aacute;ximo esplendor
en el <strong>Parque Natural de Collados del As&oacute;n</strong> ( en
Soba ), con excepcionales vistas del valle y nacimiento
del r&iacute;o que le da nombre en una espectacular
cascada de 50 metros. El mirador y nacimiento del r&iacute;o
G&aacute;ndara, espesos bosques, numerosas rutas de
gran belleza, hermosas aldeas r&uacute;sticas o el excepcional
retablo plateresco de la iglesia de Rozas am&eacute;n
de otras riquezas arquitect&oacute;nicas.<br>
<br>
<span class="titulos4">El mar</span><br>
A unos tres kil&oacute;metros de nuestra casona comienza
la <strong>Reserva Natural de las marismas de Santo&ntilde;a,
Victoria y Joyel</strong>. Mucho tiempo se ha pensado que las
marismas eran zonas de escaso valor, pero la ciencia
ha demostrado que son uno de los ecosistemas m&aacute;s
ricos del planeta. Estas marismas constituyen la principal
zona h&uacute;meda de la cornisa cant&aacute;brica.
Ocupan 3.866 hect&aacute;reas repartidas entre los t&eacute;rminos
municipales de Argo&ntilde;os, B&aacute;rcena de Cicero,
Colindres, Escalante, Laredo, Limpias, Noja, Santo&ntilde;a
y Voto. Este enclave singular, adem&aacute;s de pr&oacute;digo
en fauna marina, es utilizado por las aves migratorias,
procedentes del norte y el centro del continente, en
su desplazamiento hacia tierras m&aacute;s c&aacute;lidas.
De forma global, en este espacio natural se han observado,
hasta la fecha, 121 especies de aves ligadas al medio
acu&aacute;tico.<br>
<br>
<span class="titulos4">Arte Rupestre</span><br>
Cantabria atesora en su subsuelo una de las mayores
concentraciones de <strong>cuevas con arte rupestre</strong> en Europa.
Hasta hoy se han confirmado unos 50 yacimientos, pero
recientes descubrimientos permiten pensar que este censo
puede crecer en el futuro.<br>
Visitar algunos de estos yacimientos que se encuentran
a unos pocos kil&oacute;metros de nuestra Casona es
una actividad perfecta para cuando el tiempo est&aacute;
desapacible.<br>
<br>
<span class="titulos4">Ciudades</span><br>
Nuestra Casona se encuentra equidistante de Santander
y Bilbao. En unos 45 minutos estar&aacute;s en el centro
de cualquiera de estas ciudades y podr&aacute;s disfrutar
de la gran oferta cultural que ambas ofrecen.<br>
<br>
En <strong>Bilbao</strong> cuentas con el emblem&aacute;tico <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="titulos3">Museo Guggenheim</a> y tambi&eacute;n con el muy interesante Museo
de Bellas Artes. Pero no es para olvidarse del Museo
Arqueol&oacute;gico, Etnogr&aacute;fico e Hist&oacute;rico
o del Museo Diocesano.<br>
<br>
En <strong>Santander</strong> est&aacute; el Museo de
Prehistoria y Arqueolog&iacute;a y el Museo Mar&iacute;timo
del Cant&aacute;brico, adem&aacute;s de el Museo de
Bellas Artes. <br>
Ya fuera de Santander es recomendable visitar el Museo
Altamira de Santillana, el Museo de la Naturaleza en
Cabez&oacute;n de la Sal y el parque de la Naturaleza
de Cab&aacute;rceno.</p>
<p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
<span class="credits"><strong>Museo Guggenheim-Bilbao </strong></span><span class="titulos2"><br>
</span></p></td>
<td width="10" rowspan="2" valign="top"> <img src="../img_nav/transp.gif" width="10" height="10"></td>
<td width="220" valign="top">
<div align="right">
<img src="../img_nav/Fotos/Valle%20de%20Aras.jpg" width="220" height="146"> <span class="credits">Vista del <strong>valle de Aras</strong>, con la casona <br>
a la izquierda.<br>
<br>
</span><img src="../img_nav/Fotos/playa%20de%20Berria.JPG" width="220" height="149"><br>
<span class="credits"><strong>Playa
de Berria</strong> (Santo&ntilde;a),
a unos 15 km. <br>
<br></span>
<img src="../img_nav/paisaje6.jpg" width="220" height="146"><br>
<span class="credits">Vista de la playa de <strong>Laredo</strong>, a unos 10 km. <br>
<br>
</span>
<img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
Puerto pesquero de <strong>Colindres</strong>.<br>
</span><br>
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
Una zona ideal para el senderismo.</span><br>
</div> </td>
</tr>
<tr>
<td valign="top">
<div align="right">
<p><span class="titulos3"><strong>A</strong>lgunas
direcciones de inter&eacute;s</span><br>
</span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<br>
</a><a href="http://www.altoason.com" target="_blank" class="textoNegrita">www.altoason.com<br>
</a><a href="http://www.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
www.cantabria.com</a><br>
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<br>
</a><a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita">www.guggenheim-bilbao.es</a></p>
</div></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

152
esp/contacto_esp.htm Normal file
View File

@ -0,0 +1,152 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<style type="text/css">
<!--
.style2 {font-size: 9px;
color: #C0C0C0;
}
.style8 {color: #333333}
.style8 {color: #666666}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td align="right" valign="baseline" bgcolor="#333333"><div align="left"><span class="credits">T</span><span class="titulos3 style2"><span class="titulos3 style4"><span class="style2"><span class="style8">Tel. 942 679 150</span> </span></span></span><span class="titulos3 style2"><span class="titulos3 style4"><span class="style2"> </span></span></span></div></td>
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_esp.htm" class="menu">Presentaci&oacute;n </a>&middot;<a href="galeria_esp.htm" class="menu">Fotograf&iacute;as </a>&middot;<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> &middot;<a href="tarifas_esp.htm" class="menu">Tarifas</a> &middot;</span><a href="cantabria_esp.htm" class="menu">La Comarca </a><span class="menu2">&middot;</span><span class="menu"><a href="contacto_esp.htm" class="menu2">Reserva y Contacto</a> </span></td>
<td bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
</a><span class="titulos1">
&nbsp;RESERVAS Y CONTACTO&nbsp;</span></span><br>
<br>
<table width="100%" border="0">
<tr valign="top">
<td width="42%" class="texto"><p>Para
realizar una reserva o solicitar m&aacute;s informaci&oacute;n,
<br>
contacte con nosotros:<br>
<span><br>
<a href="mailto:info@villadepalacios.com" class="titulos3">
info@villadepalacios.com</a><br>
<br>
</span><span class="titulos3">Barrio Palacios 150<br>
San Miguel de Aras. Voto <br>
39766 - Cantabria<br>
<br>
Tel. 942 679 150 <br>
Mov. 627 030 030 <br>
</span></p>
<p align="left"><strong>Para
llegar:</strong><br>
Salida en Km 177 (Treto-Cicero) <br>
de la autov&iacute;a
Santander-Bilbao. <br>
Ir direcci&oacute;n Treto y enseguida van apareciendo
indicaciones hacia <br>
SAN MIGUEL DE ARAS. <br>
Hay unos 9
Km. Desde la autov&iacute;a hasta &#8220;La Villa
de Palacios&#8221;.<span class="titulos2"><br>
</span></p>
</blockquote></td>
<td height="365" colspan="2"> <div align="center">
<p><a href="#"><img src="../img_nav/mapa.jpg" alt="Pulse para ampliar el mapa" width="450" height="332" border="0" onClick="MM_openBrWindow('../img_nav/mapa_grande.htm','Mapa','toolbar=yes,menubar=yes,resizable=yes,width=620,height=500')"><br>
<span class="titulos3">A 45 minutos de Bilbao y de
Santander</span></a><span class="titulos3">. </span><span class="texto"><br>
</span><span class="credits">Pulse en la imagen para ampliar e imprimir.</span></p>
</div></td>
</tr>
</table>
<p align="center"><span class="titulos4">Coordenadas G.P.S.</span><br>
<span class="textoNegrita"><strong>Longitud</strong></span><strong>: </strong>W03 grados&nbsp;&nbsp; 30 minutos&nbsp; 57 segundos<BR>
<strong>Latitud: </strong>N43 grados&nbsp; 19 minutos 52 segundos</p>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

125
esp/galeria2_esp.htm Normal file
View File

@ -0,0 +1,125 @@
<html>
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
.style1 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #FFFFFF; text-decoration: none; font-family: Verdana;}
.style2 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
body {
background-color: #DCDCB8;
}
-->
</style>
</head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0" bgcolor="#999999">
<tr>
<td align="right" valign="top" height="487">
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<tr>
<td>
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
<tr align="left" valign="top">
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="23" rowspan="3">&nbsp;</td>
<td width="280" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/DSC08200.JPG" width="280" height="373" border="0"></td>
<td width="6" rowspan="3">&nbsp;</td>
<td width="280" valign="top"><br> <img src="../img_nav/nueva%20galeria/INTERIORES2.JPG" width="280" height="210" border="0"></td>
<td width="12" rowspan="3" valign="top">&nbsp;</td>
<td width="12" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA5.JPG" width="280" height="373" border="0"></td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
<tr>
<td width="23" rowspan="3">&nbsp;</td>
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/ENTORNO.JPG" width="280" height="210" border="0"></td>
<td width="6" rowspan="3">&nbsp;</td>
<td width="280" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/INTERIORES%207.JPG" width="280" height="373" border="0"></td>
<td width="12" rowspan="3" valign="top">&nbsp;</td>
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
</tr>
<tr>
<td width="280" valign="middle">&nbsp;</td>
<td width="12" valign="middle">&nbsp;</td>
</tr>
<tr>
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20FINCA6.JPG" width="280" height="210" border="0"><br> <br> </td>
<td width="12" valign="top"><img src="../img_nav/nueva%20galeria/DSC08342.JPG" width="280" height="210"></td>
</tr>
</table> </td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

204
esp/galeria_esp.htm Normal file
View File

@ -0,0 +1,204 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style4 {font-style: italic}
.style2 {font-size: 9px;
color: #C0C0C0;
}
.style8 {color: #333333}
.style8 {color: #666666}
.style9 {font-size: 9px; line-height: normal; font-weight: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
.style12 {line-height: normal; font-weight: bold; font-variant: normal; color: #669900; text-decoration: none; font-family: Verdana; font-size: 12px;}
.style13 {font-family: Verdana}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#CCCC99">
<td align="right" valign="baseline" bgcolor="#333333"><div align="left" class="style4"><span class="style9">T</span><span class="titulos3 style2"><span class="style12"><span class="style2"><span class="style8">Tel. 942 679 150</span></span></span></span> <span class="titulos3 style2"><span class="style13"><span class="style2"> </span></span></span></div></td>
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_esp.htm" class="menu">Presentaci&oacute;n </a></span><span class="menu2">&middot;</span><span class="menu"><a href="galeria_esp.htm" class="menu2">Fotograf&iacute;as</a> &middot;<a href="alojamiento_esp.htm" class="menu">Alojamiento </a>&middot;<a href="tarifas_esp.htm" class="menu">Tarifas</a> &middot;</span><a href="cantabria_esp.htm" class="menu">La Comarca </a><span class="menu">&middot;<a href="contacto_esp.htm" class="menu">Reserva y Contacto</a> </span></td>
<td bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="titulos1"><br>
&nbsp;GALER&Iacute;A DE IM&Aacute;GENES&nbsp;</span></span><span class="texto"><br>
<br>
Aqu&iacute; tiene algunas im&aacute;genes de la Casona y sus alrededores. Puede ver fotograf&iacute;as de las habitaciones en la secci&oacute;n </span><a href="alojamiento_esp.htm" class="titulos3">Alojamiento.</a>
<br>
<br>
<table width="100%" border="0">
<tr>
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
<tr>
<td width="90%" valign="top"><span class="titulos3"><strong class="titulos4">Interiores</strong></strong></span> <span class="textoNegrita">Los espacios comunes</span></td>
<td width="10%" valign="bottom">
<div align="right"></div></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES3.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES6.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table> <br>
<table width="100%" border="0">
<tr>
<td width="93%" valign="top"><span class="titulos4">La casona </span><span class="textoNegrita">Una
casona llena de detalles</span></td>
<td width="7%" valign="bottom">
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA7.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA12.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08227.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08236.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table> <br>
<table width="100%" border="0">
<tr>
<td width="93%" height="25" valign="top"><span class="titulos4">La finca</span> <span class="textoNegrita">8.000
metros cuadrados para disfrutar</span></td>
<td width="7%" valign="bottom">
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08252.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA5.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="40">&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
<td>&nbsp;</td>
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA1.JPG" width="280" height="210" border="0"></td>
<td width="40" valign="top">&nbsp;</td>
</tr>
</table>
<p><a href="#" class="textefotos"><span class="textoNegrita" onClick="MM_openBrWindow('galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')">Pulse</span><span class="titulos3" onClick="MM_openBrWindow('galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')"> aqu&iacute; </span><span class="titulos3" onClick="MM_openBrWindow('galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')"></span><span class="textoNegrita" onClick="MM_openBrWindow('galeria2_esp.htm','galeria2','scrollbars=yes,width=890,height=600')">para ver m&aacute;s im&aacute;genes</span></a><span class="menu2"><br>
<br>
</span></p></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

190
esp/home_esp.htm Normal file
View File

@ -0,0 +1,190 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>Hotel con encanto ::: Turismo rural en Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_showHideLayers() { //v6.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
<style type="text/css">
<!--
.style2 {
font-size: 9px;
color: #C0C0C0;
}
.style7 {color: #333333}
.style8 {color: #666666}
.style13 {font-size: 9px}
.style14 {color: #FFFFFF}
.style15 {
font-size: 11px;
font-style: italic;
}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style></head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="77" align="right" valign="baseline" bgcolor="#333333"><div align="left" class="style2"> <span class="style7">T</span><span class="style8">Tel. 942 679 150</span> </div></td>
<td width="612" align="right" bgcolor="#333333" class="menu"><span class="menu2">Presentaci&oacute;n </span> <a href="galeria_esp.htm" class="menu">&middot;Fotograf&iacute;as &middot;</a><a href="alojamiento_esp.htm" class="menu">Alojamiento</a><a href="../BK%20home%20ofertas/galeria_esp.htm" class="menu"> &middot;</a><a href="tarifas_esp.htm" class="menu">Tarifas </a><a href="../BK%20home%20ofertas/galeria_esp.htm" class="menu">&middot;</a><a href="cantabria_esp.htm" class="menu">La comarca</a><a href="../BK%20home%20ofertas/galeria_esp.htm" class="menu"> &middot;</a><a href="contacto_esp.htm" class="menu">Reserva y Contacto</a></td>
<td width="11" bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<span class="titulos3 style13"><br>
</span>
<table width="100%" border="0">
<tr>
<td width="33%" valign="bottom"><span><span class="titulos1">&nbsp;PRESENTACI&Oacute;N&nbsp;</span></span>
<span class="titulos3 style13"></span></td>
</tr>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="48%" valign="top" class="texto"><div align="justify"><strong class="titulos3">La
Villa de Palacios</strong>, una preciosa casa del siglo
XIX completamente reformada, es el destino ideal para una estancia de tiempo
libre. Est&aacute; situada en el privilegiado enclave
de la Junta de Voto, rodeada de monta&ntilde;as y frondosos
bosques.<span class="credits"> <a href="../BK%20home%20ofertas/contacto_esp.htm" target="_blank" class="titulos3 style9"> <span class="style14">o<br>
<br>
oooooooooooooooo</span><span class="style15">&gt;&gt; Ver SITUACI&Oacute;N de la CASONA</span></a><br>
<br>
</span>
Una finca de <strong>8.000 m&sup2;</strong>,
con nogales, casta&ntilde;os, encinas y avellanos enmarca
el <strong>hotel-casona</strong> La Villa de Palacios,
ofreciendo al visitante un espacio en consonancia con
el bello entorno natural del Valle de Aras.<br>
<span class="credits"><br>
</span>
Haz una escapada y disfruta
del mejor <strong>turismo rural</strong>
en un sitio con excelentes comunicaciones y posibilidades de ocio: a 15 minutos de <strong>Laredo
y sus playas</strong> y a 40 minutos de<strong> Santander </strong>y de<strong> Bilbao</strong>. <br>
<br>
Visita el conocido<a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="texto"><strong>
<span class="textoNegrita"><u>Museo Guggenheim</u></span></strong></a>, conoce la Reserva Natural de las Marismas
de Santo&ntilde;a, o practica el <strong>excursionismo</strong>, la <strong>espeleolog&iacute;a</strong>
y los <strong>deportes de aventura</strong> en las monta&ntilde;as de
la zona.<br>
</div></td>
<td width="52%" height="289" valign="middle"> <div align="right">
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
<span class="titulos4"><br>
Bienvenido a La Villa de Palacios ***</span></p>
<p align="center"><span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span><br>
</p>
</div></td>
</tr>
<tr align="left" valign="top">
<td height="108" colspan="2" class="texto"> <br>
<br>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
<td width="65%" valign="top" class="texto">La Villa de Palacios ostenta la categor&iacute;a de <strong>Palacios y Casonas de Cantabria</strong> y pertenece al exigente <strong>Club de Calidad Cantabria Gran Reserva</strong>:<a href="http://www.calidadcantabria.com" target="_blank" class="titulos3"><br>
www.calidadcantabria.com</a> </td>
</tr>
</table></td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

94
esp/ofertas.htm Normal file
View File

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:::OFERTAS:::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
background-color: #CCCC99;
}
.style1 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #FFFFFF; text-decoration: none; font-family: Verdana;}
.style2 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
-->
</style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
<tr align="center" valign="middle" bgcolor="#FFFFFF">
<td height="20" colspan="2">
<div align="center" class="credits"></div> <div align="center"><font size="4"><span class="textefotos"><font size="4"><img src="../img_nav/flecha.gif" width="14" height="14"></font>Promociones
Julio<font size="4"><img src="../img_nav/transp.gif" width="10" height="30" border="0"></font></span></font></div></td>
</tr>
<tr>
<td colspan="2" class="texto"><div align="left"><br>
</div></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="style2"><font size="3"><font size="2"><strong><font size="3">62 </font></strong></font></font></span><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">&euro;</font></strong></font></font></span> <span class="puntitos"><strong><br>
por d&iacute;a </strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoci&oacute;n </font></strong></font></font></span><span class="style1"><font size="3"><font size="2"><strong><font size="3">WEEK</font></strong></font></font></span><br> <span class="textoNegrita">Incluye:<br>
- Una semana en habitaci&oacute;n doble con desayuno para dos personas durante la semana. </span><span class="titulos2"><strong class="titulos2">*V&aacute;lida hasta el 31 de Julio</strong>*</span><span class="textoNegrita"><br>
</span></td>
</tr>
<tr>
<td width="76" align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">75
&euro;</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong>
</strong></font></span></font></font><span class="puntitos"><strong><br>
por persona</strong></span></td>
<td width="424" valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoci&oacute;n COUPLE </font></strong></font></font></span><br> <span class="textoNegrita">Incluye:<br>
- Detalle de bienvenida<br>
- 2 noches de hotel<br>
- 2 desayunos<br>
- 1 cena rom&aacute;ntica <br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80
&euro;</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong>
</strong></font></span></font></font><span class="puntitos"><strong><br>
por persona</strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoci&oacute;n SPORT </font></strong></font></font></span><br>
<span class="textoNegrita">Incluye:<br>
- 2 noches de hotel<br>
- 2 desayunos<br>
- 1 ruta en QUAD biplaza por el Valle de Aras o pr&aacute;ctica de espeleolog&iacute;a (distintos niveles). <br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 &euro;</font></strong></font></font></span><br>
<span class="puntitos"><strong>en total</strong></span> <span class="puntitos"><strong><br>
</strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Fin
de semana FAMILY 4</font></strong></font></font></span><br>
<span class="textoNegrita">oferta
A (4 personas):<br>
- 2 noches en habitaci&oacute;n doble<br>
- 2 camas supletorias<br>
- 8 desayunos<br>
</span></td>
</tr>
<tr>
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 &euro;<br>
</font></strong></font></font></span><span class="puntitos"><strong>en total<br>
</strong></span></td>
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Fin
de semana FAMILY 6</font></strong></font></font></span><br>
<span class="textoNegrita">oferta B (6 personas):<br>
- 2 noches en 2 habitaciones dobles<br>
- 2 camas supletorias<br>
- 12 desayunos<br>
</span></td>
</tr>
<tr>
<td colspan="2" class="commentaires"><div align="center"><span class="commentaires"><br>
</span><span class="style3">Ofertas v&aacute;lidas hasta el 29 de Julio. 7% de I.V.A no incluido. </span><span class="commentaires"><br>
<br>
</span></div></td>
</tr>
</table>
</body>
</html>

38
esp/pop-up oferta.htm Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:::OFERTAS:::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../css.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#333333" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="381" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
<tr>
<td width="68" align="left" valign="top" background="../img_nav/hoja.gif">
<div align="center" class="credits"><img src="../img_nav/transp.gif" width="68" height="43"></div></td>
<td width="313" align="left" valign="middle" bgcolor="#333333" class="credits"><font size="4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Promociones
de invierno</font></td>
</tr>
<tr>
<td colspan="2" class="texto">
<div align="center">
<p><br>
<span class="menu2"></span> <span class="credits"><font size="3"><font size="2"><strong><font size="3">3x2</font></strong></font></font></span><font size="2">
- Estancia de <strong>3 noches</strong> pagando <strong>s&oacute;lo
2<br>
</strong>&oacute;<br>
<span class="menu2">&nbsp;&nbsp;&nbsp;</span> <span class="credits"><strong><font size="3">Cena
gratis</font></strong></span></font><font color="#FF3300" size="2"><strong>
</strong></font><font size="2">- Te invitamos a una cena con la estancia
de <strong>2 noches</strong>.</font></p>
<p class="menu"><span class="commentaires">Realiza tu reserva <strong>ya</strong>,
estas ofertas son v&aacute;lidas &uacute;nicamente hasta el <strong>31
de Marzo y no incluyen el puente de San Jos&eacute; (18-21 Marzo)</strong>.</span><br>
<br>
</p>
</div></td>
</tr>
</table>
</body>
</html>

342
esp/tarifas_esp.htm Normal file
View File

@ -0,0 +1,342 @@
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta name="description"
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
<meta name="Title" content="La Villa de Palacios:: casona de San Miguel de Aras :: turismo rural en Cantabria. ">
<!-- Preciosa Casona de turismo rural situada en el valle de Aras, Cantabria.-->
<meta name="keywords" content="Villa de Palacios, villadepalacios,turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Casona de San Miguel, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo, Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de aras, turismo rural, cantabria,
casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta http-equiv="keywords" content="turismo rural Cantabria, casas rurales en Cantabria, casa rural Cantabria,
Villa de Palacios, villapalacios, casonas, casa rural, casas rurales, agroturismos, hoteles, alojamientos rurales,
turismo rural, turismo verde, turismo activo, viajes, ocio, Cantabria, Laredo,Santoña, Valle de Aras,
Santander, vacaciones, fin de semana, descanso, relax, rio Ason, casona de san miguel de aras, turismo rural,
cantabria, casas rurales, casa rural, fin de semana, turismo verde, turismo activo, casona, alojamiento, vacaciones">
<meta name="Description" content=" Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<meta name="Subject" content="Turismo rural en Cantabria. La Villa de Palacios es una bella casona típica en Cantabria.
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
<META NAME="Language" content="español">
<META NAME="Revisit" content="7 days">
<META NAME="Distribution" CONTENT="Global">
<META NAME="Robots" CONTENT="All">
<META NAME="Author" CONTENT="planetagalleta.com">
<!-- InstanceBeginEditable name="doctitle" -->
<title>El plan perfecto ::: Turismo rural en Cantabria</title>
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../css.css" type="text/css">
<script language="JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
.style8 {
font-size: 14px;
font-weight: bold;
}
.style2 { font-size: 9px;
color: #C0C0C0;
}
.style9 {color: #333333}
.style10 {color: #666666}
.style12 {
line-height: normal;
font-variant: normal;
color: #FFFFFF;
text-decoration: none;
background-color: #669900;
font-family: "Times New Roman", Times, serif;
font-size: 18px;
font-style: italic;
}
.style14 {font-size: large}
.style15 {font-size: 10px}
-->
</style>
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
<!-- InstanceEndEditable -->
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
<style type="text/css">
<!--
body {
background-color: #DCDCB8;
}
-->
</style>
</head>
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
<tr align="left" valign="top">
<td><!-- InstanceBeginEditable name="EditRegion3" -->
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0','width','700','height','200','src','../img_nav/top','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','../img_nav/top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
<param name="movie" value="../img_nav/top.swf">
<param name="quality" value="high">
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
</object></noscript>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
<tr>
<td width="89" align="right" valign="baseline" bgcolor="#333333"><div align="left" class="titulos3 style4"><span class="style2"><span class="style9">T</span><span class="style10">Tel. 942 679 150</span> </span></div></td>
<td align="right" bgcolor="#333333"><span class="menu"><a href="home_esp.htm" class="menu">Presentaci&oacute;n</a> &middot;<a href="galeria_esp.htm" class="menu">Fotograf&iacute;as</a> &middot;<a href="alojamiento_esp.htm" class="menu">Alojamiento </a></span><span class="menu2">&middot;</span><span class="menu"><a href="tarifas_esp.htm" class="menu2">Tarifas</a> &middot;</span><a href="cantabria_esp.htm" class="menu">La Comarca</a><span class="menu"> &middot;<a href="contacto_esp.htm" class="menu">Reserva y Contacto</a> </span></td>
<td bgcolor="#333333">&nbsp;</td>
</tr>
</table>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td colspan="4" bgcolor="#DCDCB8">
<div align="center">
<p class="style12">::: Promociones Especiales de Invierno ::: </p>
</div> </td>
</tr>
<tr align="center" valign="top">
<td width="20%" height="199" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3"><br>
Fin de semana COUPLE </strong><br>
<strong class="style8">73 &euro; </strong><br>
<span class="texto">por persona </span> </div></td>
<td width="28%" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Incluye:<br>
<br>
-
</strong>Detalle de bienvenida<br>
-
2 noches de hotel<br>
-
2 desayunos<br>
-
1 cena rom&aacute;ntica</p>
<ul>
</ul>
</div></td>
<td width="17%" height="199" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3"><br>
Fin de semana SPORT </strong><br>
<strong class="style8">79 &euro; </strong><br>
<span class="texto">por persona </span> </div></td>
<td width="35%" align="left" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Incluye:<br>
<br>
-
</strong>2 noches de hotel<br>
-
2 desayunos<br>
<br>
<strong>una actividad deportiva, <br>
a elegir entre:<br>
</strong>* 1 ruta de Quad biplaza por el Valle de Aras<br>
* Paseo en canoa por el As&oacute;n<br>
* Actividad espeleol&oacute;gica o visita a cueva de la comarca</p>
<ul>
</ul>
</div></td>
</tr>
<tr align="center" valign="top">
<td height="115" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3">Fin de semana FAMILY 4</strong><br>
<strong class="style8">140 &euro; </strong><br>
<span class="texto">Total</span> </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="center"><strong>Incluye:</strong></p>
<p align="left">2 noches en habitaci&oacute;n doble<br>
+
2 camas supletorias<br>
+
4 desayunos </p>
<ul>
</ul>
</div></td>
<td height="115" align="left" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos3">Fin de semana FAMILY 6</strong><br>
<strong class="style8">250 &euro; </strong><br>
<span class="texto">Total</span> </div></td>
<td align="left" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Oferta para 6 personas<br>
<br>
</strong>2 noches en <br>
2 habitaciones dobles<br>
+
2 camas supletorias<br>
+
6 desayunos</p>
<ul>
</ul>
</div></td>
</tr>
<tr align="center" valign="middle">
<td height="115" align="center" valign="top" bgcolor="#DCDCB8" class="textoNegrita"><div align="center"><strong class="titulos4 style14">OFERTA<br>
3x2 <br>
</strong><strong class="style8">140 &euro; </strong><br>
<span class="texto">Total</span> <strong class="titulos4 style14"> </strong><br>
</div></td>
<td valign="top" bgcolor="#EEEEDB" class="texto">
<div align="center">
<p align="left"><strong>Por dos d&iacute;as de estancia, el tercero le sale gratis </strong><span class="style15">(no acumulable a las otras ofertas. No incluye los desayunos)</span></p>
<ul>
</ul>
</div></td>
<td height="2" colspan="2" align="left" valign="top" bgcolor="#EEEEDB" class="titulos3"><span class="texto"><strong>Realiza tu reserva ya. </strong><br>
Estas ofertas est&aacute;n sujetas a cupo de disponibilidad y son v&aacute;lidas para cualquier d&iacute;a laborable o festivo (excepto Puentes nacionales y Navidad) hasta el 30/06 <br>
<br>
</span><span class="texto">* Los precios no incluyen el 7% de IVA. </span> <div align="center"></div></td>
</tr>
<tr align="center" valign="middle">
<td height="26" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">&gt;&gt; Informaci&oacute;n y reservas</a></td>
</tr>
</table>
<br>
<span class="menu2"><span class="titulos1">&nbsp;TARIFAS&nbsp;</span></span><br>
<br>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="26%" bgcolor="#DCDCB8">&nbsp;</td>
<td width="20%">
<div align="center">
<p class="titulos3"><strong>Individual</strong></p>
</div></td>
<td width="20%">
<div align="center" class="titulos3">Doble</div></td>
<td width="20%">
<div align="center" class="texto">Cama supletoria</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3">Temporada baja</strong><br>
<span class="texto">(16 septiembre - 31 mayo)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">55 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">65 &euro;</p>
</div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">17 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td align="left" bgcolor="#DCDCB8" class="titulos3">Temporada media<br>
<span class="texto">(1 junio - 14 julio)</span></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">67 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">79 &euro; </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">22 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3">Temporada alta<br>
<span class="texto">(15 julio - 15 septiembre <br>
+ Semana Santa<br>
+ Navidad <br>
+ puentes nacionales)</span> </td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">83 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">96 &euro; </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">26 &euro;</div></td>
</tr>
<tr align="center" valign="middle">
<td height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">&gt;&gt; Informaci&oacute;n y reservas</a></td>
</tr>
</table>
<br>
<span class="titulos4"><strong>Tarifas ocupaci&oacute;n completa</strong></span><br>
<br>
<span class="texto">Ideal para grupos, celebraciones familiares, seminarios y actividades de empresa, esta modalidad supone ocupar toda la casona en r&eacute;gimen exclusivo. Ofrecemos igualmente la posibilidad de organizar actividades complementarias durante su estancia (rafting, quads, etc.), no duden en consultar con nosotros si les interesa un presupuesto a la medida de de sus necesidades.</span><br>
<span class="style10">Estas tarifas no son aplicables durante el mes de Agosto.</span><br>
<br>
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
<tr align="center" valign="top" bgcolor="#DCDCB8">
<td width="25%">&nbsp;</td>
<td width="21%">
<div align="center">
<p class="textoNegrita"><span class="titulos3"><span class="style8">Hotel completo </span> </span><strong><br>
</strong><span class="texto">(por noche)</span></p>
</div></td>
<td width="18%">
<div align="center" class="texto">Cama supletoria</div></td>
<td width="18%" class="textoNegrita"><span class="textoNegrita">Suplemento desayuno </span><br>
<span class="texto">(por persona)</span></td>
<td width="18%">
<div align="center" class="textoNegrita"><span class="textoNegrita">Suplemento <br>
uso cocina </span><br>
<span class="texto">(opcional) </span></div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="textoNegrita"><strong class="titulos3">Temporada baja</strong><br>
<span class="texto">(16 septiembre - 31 mayo)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>392</strong> <strong>&euro; </strong></div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">17 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">6 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">12 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="titulos3">Temporada media<br>
<span class="texto">(1- junio - 14 julio)</span></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>495</strong> <strong>&euro;</strong> </div></td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">22 &euro;</div></td>
<td bgcolor="#EEEEDB" class="texto">6 &euro;</td>
<td height="2" bgcolor="#EEEEDB" class="texto">
<div align="center">12 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td align="left" class="titulos3">Temporada alta<br>
<span class="texto">(15 julio - 15 septiembre <br>
+ Semana Santa<br>
+ Navidad <br>
+ puentes nacionales)</span> </td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center"><strong>611</strong> <strong>&euro;</strong> </div></td>
<td bgcolor="#EEEEDB" class="texto">
<div align="center">
<p class="texto">26 &euro;</p>
</div></td>
<td bgcolor="#EEEEDB" class="texto">6 &euro;</td>
<td height="89" bgcolor="#EEEEDB" class="texto">
<div align="center" class="texto">12 &euro;</div></td>
</tr>
<tr align="center" valign="middle" bgcolor="#DCDCB8">
<td height="26" colspan="5" align="left" valign="middle" bgcolor="#FFFFFF"><a href="contacto_esp.htm" class="textoNegrita">&gt;&gt; Informaci&oacute;n y reservas</a></td>
</tr>
</table>
<br>
<span class="texto">&#8226; En temporada alta y media, as&iacute; como los fines de semana, el m&iacute;nimo de estancia ser&aacute; de 2 noches.<br>
&#8226; El hotel consta de 8 habitaciones dobles. La ocupaci&oacute;n completa puede incluir el uso de cocina <br>
con el suplemento arriba indicado. <br>
&#8226; Si desea traer animales, por favor consulte con nosotros previamente. </span><br>
<span class="texto"><strong class="textoNegrita">(7% IVA no incluido)</strong></span><!-- InstanceEndEditable --></td>
</tr>
<tr>
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>

BIN
esp/text1.swf Normal file

Binary file not shown.

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Como llegar a Villa de Palacios...</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0000.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0004.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0007.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0008.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0009.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0010.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0015.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0017.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0019.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0020.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0021.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0026.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0029.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0031.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0032.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0038.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0039.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0040.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0043.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0044.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0047.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0048.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0049.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0050.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0052.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0054.JPG" width="300" height="219">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0055.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0061.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0065.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0068.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0069.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0071.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0073.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0075.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0077.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0080.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0083.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0088.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0089.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0094.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0097.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0099.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0102.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0107.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0115.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0118.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0125.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0131.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0149.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0163.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0199.JPG" width="250" height="187">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0200.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0204.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0207.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0213.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0215.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0217.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0231.JPG" width="225" height="300">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0236.JPG" width="300" height="225">
</body>
</html>

View File

@ -0,0 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<img src="../vp0237.JPG" width="225" height="300">
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Some files were not shown because too many files have changed in this diff Show More