- Primera versión (sin terminar)
git-svn-id: https://192.168.0.254/svn/Proyectos.VillaDePalacios_Web/trunk@12 91f32c30-4b1a-42e2-b17c-7aeffbb29c96
This commit is contained in:
parent
de509efa55
commit
401b780163
BIN
Scripts/expressInstall.swf
Normal file
BIN
Scripts/expressInstall.swf
Normal file
Binary file not shown.
669
Scripts/swfobject_modified.js
Normal file
669
Scripts/swfobject_modified.js
Normal file
@ -0,0 +1,669 @@
|
|||||||
|
/*! SWFObject v2.0 <http://code.google.com/p/swfobject/>
|
||||||
|
Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
|
||||||
|
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
|
||||||
|
*/
|
||||||
|
|
||||||
|
var swfobject = function() {
|
||||||
|
|
||||||
|
var UNDEF = "undefined",
|
||||||
|
OBJECT = "object",
|
||||||
|
SHOCKWAVE_FLASH = "Shockwave Flash",
|
||||||
|
SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
|
||||||
|
FLASH_MIME_TYPE = "application/x-shockwave-flash",
|
||||||
|
EXPRESS_INSTALL_ID = "SWFObjectExprInst",
|
||||||
|
|
||||||
|
win = window,
|
||||||
|
doc = document,
|
||||||
|
nav = navigator,
|
||||||
|
|
||||||
|
domLoadFnArr = [],
|
||||||
|
regObjArr = [],
|
||||||
|
timer = null,
|
||||||
|
storedAltContent = null,
|
||||||
|
storedAltContentId = null,
|
||||||
|
isDomLoaded = false,
|
||||||
|
isExpressInstallActive = false;
|
||||||
|
|
||||||
|
/* Centralized function for browser feature detection
|
||||||
|
- Proprietary feature detection (conditional compiling) is used to detect Internet Explorer's features
|
||||||
|
- User agent string detection is only used when no alternative is possible
|
||||||
|
- Is executed directly for optimal performance
|
||||||
|
*/
|
||||||
|
var ua = function() {
|
||||||
|
var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF && typeof doc.appendChild != UNDEF && typeof doc.replaceChild != UNDEF && typeof doc.removeChild != UNDEF && typeof doc.cloneNode != UNDEF,
|
||||||
|
playerVersion = [0,0,0],
|
||||||
|
d = null;
|
||||||
|
if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
|
||||||
|
d = nav.plugins[SHOCKWAVE_FLASH].description;
|
||||||
|
if (d) {
|
||||||
|
d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
|
||||||
|
playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
|
||||||
|
playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
|
||||||
|
playerVersion[2] = /r/.test(d) ? parseInt(d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (typeof win.ActiveXObject != UNDEF) {
|
||||||
|
var a = null, fp6Crash = false;
|
||||||
|
try {
|
||||||
|
a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".7");
|
||||||
|
}
|
||||||
|
catch(e) {
|
||||||
|
try {
|
||||||
|
a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".6");
|
||||||
|
playerVersion = [6,0,21];
|
||||||
|
a.AllowScriptAccess = "always"; // Introduced in fp6.0.47
|
||||||
|
}
|
||||||
|
catch(e) {
|
||||||
|
if (playerVersion[0] == 6) {
|
||||||
|
fp6Crash = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!fp6Crash) {
|
||||||
|
try {
|
||||||
|
a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
|
||||||
|
}
|
||||||
|
catch(e) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!fp6Crash && a) { // a will return null when ActiveX is disabled
|
||||||
|
try {
|
||||||
|
d = a.GetVariable("$version"); // Will crash fp6.0.21/23/29
|
||||||
|
if (d) {
|
||||||
|
d = d.split(" ")[1].split(",");
|
||||||
|
playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(e) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var u = nav.userAgent.toLowerCase(),
|
||||||
|
p = nav.platform.toLowerCase(),
|
||||||
|
webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
|
||||||
|
ie = false,
|
||||||
|
windows = p ? /win/.test(p) : /win/.test(u),
|
||||||
|
mac = p ? /mac/.test(p) : /mac/.test(u);
|
||||||
|
/*@cc_on
|
||||||
|
ie = true;
|
||||||
|
@if (@_win32)
|
||||||
|
windows = true;
|
||||||
|
@elif (@_mac)
|
||||||
|
mac = true;
|
||||||
|
@end
|
||||||
|
@*/
|
||||||
|
return { w3cdom:w3cdom, pv:playerVersion, webkit:webkit, ie:ie, win:windows, mac:mac };
|
||||||
|
}();
|
||||||
|
|
||||||
|
/* Cross-browser onDomLoad
|
||||||
|
- Based on Dean Edwards' solution: http://dean.edwards.name/weblog/2006/06/again/
|
||||||
|
- Will fire an event as soon as the DOM of a page is loaded (supported by Gecko based browsers - like Firefox -, IE, Opera9+, Safari)
|
||||||
|
*/
|
||||||
|
var onDomLoad = function() {
|
||||||
|
if (!ua.w3cdom) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
addDomLoadEvent(main);
|
||||||
|
if (ua.ie && ua.win) {
|
||||||
|
try { // Avoid a possible Operation Aborted error
|
||||||
|
doc.write("<scr" + "ipt id=__ie_ondomload defer=true src=//:></scr" + "ipt>"); // String is split into pieces to avoid Norton AV to add code that can cause errors
|
||||||
|
var s = getElementById("__ie_ondomload");
|
||||||
|
if (s) {
|
||||||
|
s.onreadystatechange = function() {
|
||||||
|
if (this.readyState == "complete") {
|
||||||
|
this.parentNode.removeChild(this);
|
||||||
|
callDomLoadFunctions();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(e) {}
|
||||||
|
}
|
||||||
|
if (ua.webkit && typeof doc.readyState != UNDEF) {
|
||||||
|
timer = setInterval(function() { if (/loaded|complete/.test(doc.readyState)) { callDomLoadFunctions(); }}, 10);
|
||||||
|
}
|
||||||
|
if (typeof doc.addEventListener != UNDEF) {
|
||||||
|
doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, null);
|
||||||
|
}
|
||||||
|
addLoadEvent(callDomLoadFunctions);
|
||||||
|
}();
|
||||||
|
|
||||||
|
function callDomLoadFunctions() {
|
||||||
|
if (isDomLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ua.ie && ua.win) { // Test if we can really add elements to the DOM; we don't want to fire it too early
|
||||||
|
var s = createElement("span");
|
||||||
|
try { // Avoid a possible Operation Aborted error
|
||||||
|
var t = doc.getElementsByTagName("body")[0].appendChild(s);
|
||||||
|
t.parentNode.removeChild(t);
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
isDomLoaded = true;
|
||||||
|
if (timer) {
|
||||||
|
clearInterval(timer);
|
||||||
|
timer = null;
|
||||||
|
}
|
||||||
|
var dl = domLoadFnArr.length;
|
||||||
|
for (var i = 0; i < dl; i++) {
|
||||||
|
domLoadFnArr[i]();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addDomLoadEvent(fn) {
|
||||||
|
if (isDomLoaded) {
|
||||||
|
fn();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Cross-browser onload
|
||||||
|
- Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
|
||||||
|
- Will fire an event as soon as a web page including all of its assets are loaded
|
||||||
|
*/
|
||||||
|
function addLoadEvent(fn) {
|
||||||
|
if (typeof win.addEventListener != UNDEF) {
|
||||||
|
win.addEventListener("load", fn, false);
|
||||||
|
}
|
||||||
|
else if (typeof doc.addEventListener != UNDEF) {
|
||||||
|
doc.addEventListener("load", fn, false);
|
||||||
|
}
|
||||||
|
else if (typeof win.attachEvent != UNDEF) {
|
||||||
|
win.attachEvent("onload", fn);
|
||||||
|
}
|
||||||
|
else if (typeof win.onload == "function") {
|
||||||
|
var fnOld = win.onload;
|
||||||
|
win.onload = function() {
|
||||||
|
fnOld();
|
||||||
|
fn();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
win.onload = fn;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Main function
|
||||||
|
- Will preferably execute onDomLoad, otherwise onload (as a fallback)
|
||||||
|
*/
|
||||||
|
function main() { // Static publishing only
|
||||||
|
var rl = regObjArr.length;
|
||||||
|
for (var i = 0; i < rl; i++) { // For each registered object element
|
||||||
|
var id = regObjArr[i].id;
|
||||||
|
if (ua.pv[0] > 0) {
|
||||||
|
var obj = getElementById(id);
|
||||||
|
if (obj) {
|
||||||
|
regObjArr[i].width = obj.getAttribute("width") ? obj.getAttribute("width") : "0";
|
||||||
|
regObjArr[i].height = obj.getAttribute("height") ? obj.getAttribute("height") : "0";
|
||||||
|
if (hasPlayerVersion(regObjArr[i].swfVersion)) { // Flash plug-in version >= Flash content version: Houston, we have a match!
|
||||||
|
if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements
|
||||||
|
fixParams(obj);
|
||||||
|
}
|
||||||
|
setVisibility(id, true);
|
||||||
|
}
|
||||||
|
else if (regObjArr[i].expressInstall && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) { // Show the Adobe Express Install dialog if set by the web page author and if supported (fp6.0.65+ on Win/Mac OS only)
|
||||||
|
showExpressInstall(regObjArr[i]);
|
||||||
|
}
|
||||||
|
else { // Flash plug-in and Flash content version mismatch: display alternative content instead of Flash content
|
||||||
|
displayAltContent(obj);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else { // If no fp is installed, we let the object element do its job (show alternative content)
|
||||||
|
setVisibility(id, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix nested param elements, which are ignored by older webkit engines
|
||||||
|
- This includes Safari up to and including version 1.2.2 on Mac OS 10.3
|
||||||
|
- Fall back to the proprietary embed element
|
||||||
|
*/
|
||||||
|
function fixParams(obj) {
|
||||||
|
var nestedObj = obj.getElementsByTagName(OBJECT)[0];
|
||||||
|
if (nestedObj) {
|
||||||
|
var e = createElement("embed"), a = nestedObj.attributes;
|
||||||
|
if (a) {
|
||||||
|
var al = a.length;
|
||||||
|
for (var i = 0; i < al; i++) {
|
||||||
|
if (a[i].nodeName.toLowerCase() == "data") {
|
||||||
|
e.setAttribute("src", a[i].nodeValue);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
e.setAttribute(a[i].nodeName, a[i].nodeValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var c = nestedObj.childNodes;
|
||||||
|
if (c) {
|
||||||
|
var cl = c.length;
|
||||||
|
for (var j = 0; j < cl; j++) {
|
||||||
|
if (c[j].nodeType == 1 && c[j].nodeName.toLowerCase() == "param") {
|
||||||
|
e.setAttribute(c[j].getAttribute("name"), c[j].getAttribute("value"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
obj.parentNode.replaceChild(e, obj);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fix hanging audio/video threads and force open sockets and NetConnections to disconnect
|
||||||
|
- Occurs when unloading a web page in IE using fp8+ and innerHTML/outerHTML
|
||||||
|
- Dynamic publishing only
|
||||||
|
*/
|
||||||
|
function fixObjectLeaks(id) {
|
||||||
|
if (ua.ie && ua.win && hasPlayerVersion("8.0.0")) {
|
||||||
|
win.attachEvent("onunload", function () {
|
||||||
|
var obj = getElementById(id);
|
||||||
|
if (obj) {
|
||||||
|
for (var i in obj) {
|
||||||
|
if (typeof obj[i] == "function") {
|
||||||
|
obj[i] = function() {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
obj.parentNode.removeChild(obj);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Show the Adobe Express Install dialog
|
||||||
|
- Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
|
||||||
|
*/
|
||||||
|
function showExpressInstall(regObj) {
|
||||||
|
isExpressInstallActive = true;
|
||||||
|
var obj = getElementById(regObj.id);
|
||||||
|
if (obj) {
|
||||||
|
if (regObj.altContentId) {
|
||||||
|
var ac = getElementById(regObj.altContentId);
|
||||||
|
if (ac) {
|
||||||
|
storedAltContent = ac;
|
||||||
|
storedAltContentId = regObj.altContentId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
storedAltContent = abstractAltContent(obj);
|
||||||
|
}
|
||||||
|
if (!(/%$/.test(regObj.width)) && parseInt(regObj.width, 10) < 310) {
|
||||||
|
regObj.width = "310";
|
||||||
|
}
|
||||||
|
if (!(/%$/.test(regObj.height)) && parseInt(regObj.height, 10) < 137) {
|
||||||
|
regObj.height = "137";
|
||||||
|
}
|
||||||
|
doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
|
||||||
|
var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
|
||||||
|
dt = doc.title,
|
||||||
|
fv = "MMredirectURL=" + win.location + "&MMplayerType=" + pt + "&MMdoctitle=" + dt,
|
||||||
|
replaceId = regObj.id;
|
||||||
|
// For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
|
||||||
|
// In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
|
||||||
|
if (ua.ie && ua.win && obj.readyState != 4) {
|
||||||
|
var newObj = createElement("div");
|
||||||
|
replaceId += "SWFObjectNew";
|
||||||
|
newObj.setAttribute("id", replaceId);
|
||||||
|
obj.parentNode.insertBefore(newObj, obj); // Insert placeholder div that will be replaced by the object element that loads expressinstall.swf
|
||||||
|
obj.style.display = "none";
|
||||||
|
win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
|
||||||
|
}
|
||||||
|
createSWF({ data:regObj.expressInstall, id:EXPRESS_INSTALL_ID, width:regObj.width, height:regObj.height }, { flashvars:fv }, replaceId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Functions to abstract and display alternative content
|
||||||
|
*/
|
||||||
|
function displayAltContent(obj) {
|
||||||
|
if (ua.ie && ua.win && obj.readyState != 4) {
|
||||||
|
// For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
|
||||||
|
// In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
|
||||||
|
var el = createElement("div");
|
||||||
|
obj.parentNode.insertBefore(el, obj); // Insert placeholder div that will be replaced by the alternative content
|
||||||
|
el.parentNode.replaceChild(abstractAltContent(obj), el);
|
||||||
|
obj.style.display = "none";
|
||||||
|
win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
obj.parentNode.replaceChild(abstractAltContent(obj), obj);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function abstractAltContent(obj) {
|
||||||
|
var ac = createElement("div");
|
||||||
|
if (ua.win && ua.ie) {
|
||||||
|
ac.innerHTML = obj.innerHTML;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
var nestedObj = obj.getElementsByTagName(OBJECT)[0];
|
||||||
|
if (nestedObj) {
|
||||||
|
var c = nestedObj.childNodes;
|
||||||
|
if (c) {
|
||||||
|
var cl = c.length;
|
||||||
|
for (var i = 0; i < cl; i++) {
|
||||||
|
if (!(c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param") && !(c[i].nodeType == 8)) {
|
||||||
|
ac.appendChild(c[i].cloneNode(true));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Cross-browser dynamic SWF creation
|
||||||
|
*/
|
||||||
|
function createSWF(attObj, parObj, id) {
|
||||||
|
var r, el = getElementById(id);
|
||||||
|
if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
|
||||||
|
attObj.id = id;
|
||||||
|
}
|
||||||
|
if (ua.ie && ua.win) { // IE, the object element and W3C DOM methods do not combine: fall back to outerHTML
|
||||||
|
var att = "";
|
||||||
|
for (var i in attObj) {
|
||||||
|
if (attObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries, like Object.prototype.toJSONString = function() {}
|
||||||
|
if (i == "data") {
|
||||||
|
parObj.movie = attObj[i];
|
||||||
|
}
|
||||||
|
else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
|
||||||
|
att += ' class="' + attObj[i] + '"';
|
||||||
|
}
|
||||||
|
else if (i != "classid") {
|
||||||
|
att += ' ' + i + '="' + attObj[i] + '"';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var par = "";
|
||||||
|
for (var j in parObj) {
|
||||||
|
if (parObj[j] != Object.prototype[j]) { // Filter out prototype additions from other potential libraries
|
||||||
|
par += '<param name="' + j + '" value="' + parObj[j] + '" />';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
|
||||||
|
fixObjectLeaks(attObj.id); // This bug affects dynamic publishing only
|
||||||
|
r = getElementById(attObj.id);
|
||||||
|
}
|
||||||
|
else if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements: fall back to the proprietary embed element
|
||||||
|
var e = createElement("embed");
|
||||||
|
e.setAttribute("type", FLASH_MIME_TYPE);
|
||||||
|
for (var k in attObj) {
|
||||||
|
if (attObj[k] != Object.prototype[k]) { // Filter out prototype additions from other potential libraries
|
||||||
|
if (k == "data") {
|
||||||
|
e.setAttribute("src", attObj[k]);
|
||||||
|
}
|
||||||
|
else if (k.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
|
||||||
|
e.setAttribute("class", attObj[k]);
|
||||||
|
}
|
||||||
|
else if (k != "classid") { // Filter out IE specific attribute
|
||||||
|
e.setAttribute(k, attObj[k]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (var l in parObj) {
|
||||||
|
if (parObj[l] != Object.prototype[l]) { // Filter out prototype additions from other potential libraries
|
||||||
|
if (l != "movie") { // Filter out IE specific param element
|
||||||
|
e.setAttribute(l, parObj[l]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
el.parentNode.replaceChild(e, el);
|
||||||
|
r = e;
|
||||||
|
}
|
||||||
|
else { // Well-behaving browsers
|
||||||
|
var o = createElement(OBJECT);
|
||||||
|
o.setAttribute("type", FLASH_MIME_TYPE);
|
||||||
|
for (var m in attObj) {
|
||||||
|
if (attObj[m] != Object.prototype[m]) { // Filter out prototype additions from other potential libraries
|
||||||
|
if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
|
||||||
|
o.setAttribute("class", attObj[m]);
|
||||||
|
}
|
||||||
|
else if (m != "classid") { // Filter out IE specific attribute
|
||||||
|
o.setAttribute(m, attObj[m]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (var n in parObj) {
|
||||||
|
if (parObj[n] != Object.prototype[n] && n != "movie") { // Filter out prototype additions from other potential libraries and IE specific param element
|
||||||
|
createObjParam(o, n, parObj[n]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
el.parentNode.replaceChild(o, el);
|
||||||
|
r = o;
|
||||||
|
}
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
function createObjParam(el, pName, pValue) {
|
||||||
|
var p = createElement("param");
|
||||||
|
p.setAttribute("name", pName);
|
||||||
|
p.setAttribute("value", pValue);
|
||||||
|
el.appendChild(p);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getElementById(id) {
|
||||||
|
return doc.getElementById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function createElement(el) {
|
||||||
|
return doc.createElement(el);
|
||||||
|
}
|
||||||
|
|
||||||
|
function hasPlayerVersion(rv) {
|
||||||
|
var pv = ua.pv, v = rv.split(".");
|
||||||
|
v[0] = parseInt(v[0], 10);
|
||||||
|
v[1] = parseInt(v[1], 10);
|
||||||
|
v[2] = parseInt(v[2], 10);
|
||||||
|
return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Cross-browser dynamic CSS creation
|
||||||
|
- Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
|
||||||
|
*/
|
||||||
|
function createCSS(sel, decl) {
|
||||||
|
if (ua.ie && ua.mac) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var h = doc.getElementsByTagName("head")[0], s = createElement("style");
|
||||||
|
s.setAttribute("type", "text/css");
|
||||||
|
s.setAttribute("media", "screen");
|
||||||
|
if (!(ua.ie && ua.win) && typeof doc.createTextNode != UNDEF) {
|
||||||
|
s.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
|
||||||
|
}
|
||||||
|
h.appendChild(s);
|
||||||
|
if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
|
||||||
|
var ls = doc.styleSheets[doc.styleSheets.length - 1];
|
||||||
|
if (typeof ls.addRule == OBJECT) {
|
||||||
|
ls.addRule(sel, decl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function setVisibility(id, isVisible) {
|
||||||
|
var v = isVisible ? "visible" : "hidden";
|
||||||
|
if (isDomLoaded) {
|
||||||
|
getElementById(id).style.visibility = v;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
createCSS("#" + id, "visibility:" + v);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTargetVersion(obj) {
|
||||||
|
if (!obj)
|
||||||
|
return 0;
|
||||||
|
var c = obj.childNodes;
|
||||||
|
var cl = c.length;
|
||||||
|
for (var i = 0; i < cl; i++) {
|
||||||
|
if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
|
||||||
|
c = c[i].childNodes;
|
||||||
|
cl = c.length;
|
||||||
|
i = 0;
|
||||||
|
}
|
||||||
|
if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "swfversion") {
|
||||||
|
return c[i].getAttribute("value");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getExpressInstall(obj) {
|
||||||
|
if (!obj)
|
||||||
|
return "";
|
||||||
|
var c = obj.childNodes;
|
||||||
|
var cl = c.length;
|
||||||
|
for (var i = 0; i < cl; i++) {
|
||||||
|
if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
|
||||||
|
c = c[i].childNodes;
|
||||||
|
cl = c.length;
|
||||||
|
i = 0;
|
||||||
|
}
|
||||||
|
if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "expressinstall") {
|
||||||
|
return c[i].getAttribute("value");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
/* Public API
|
||||||
|
- Reference: http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
|
||||||
|
*/
|
||||||
|
registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr) {
|
||||||
|
if (!ua.w3cdom || !objectIdStr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var obj = document.getElementById(objectIdStr);
|
||||||
|
var xi = getExpressInstall(obj);
|
||||||
|
var regObj = {};
|
||||||
|
regObj.id = objectIdStr;
|
||||||
|
regObj.swfVersion = swfVersionStr ? swfVersionStr : getTargetVersion(obj);
|
||||||
|
regObj.expressInstall = xiSwfUrlStr ? xiSwfUrlStr : ((xi != "") ? xi : false);
|
||||||
|
regObjArr[regObjArr.length] = regObj;
|
||||||
|
setVisibility(objectIdStr, false);
|
||||||
|
},
|
||||||
|
|
||||||
|
getObjectById: function(objectIdStr) {
|
||||||
|
var r = null;
|
||||||
|
if (ua.w3cdom && isDomLoaded) {
|
||||||
|
var o = getElementById(objectIdStr);
|
||||||
|
if (o) {
|
||||||
|
var n = o.getElementsByTagName(OBJECT)[0];
|
||||||
|
if (!n || (n && typeof o.SetVariable != UNDEF)) {
|
||||||
|
r = o;
|
||||||
|
}
|
||||||
|
else if (typeof n.SetVariable != UNDEF) {
|
||||||
|
r = n;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return r;
|
||||||
|
},
|
||||||
|
|
||||||
|
embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj) {
|
||||||
|
if (!ua.w3cdom || !swfUrlStr || !replaceElemIdStr || !widthStr || !heightStr || !swfVersionStr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
widthStr += ""; // Auto-convert to string to make it idiot proof
|
||||||
|
heightStr += "";
|
||||||
|
if (hasPlayerVersion(swfVersionStr)) {
|
||||||
|
setVisibility(replaceElemIdStr, false);
|
||||||
|
var att = (typeof attObj == OBJECT) ? attObj : {};
|
||||||
|
att.data = swfUrlStr;
|
||||||
|
att.width = widthStr;
|
||||||
|
att.height = heightStr;
|
||||||
|
var par = (typeof parObj == OBJECT) ? parObj : {};
|
||||||
|
if (typeof flashvarsObj == OBJECT) {
|
||||||
|
for (var i in flashvarsObj) {
|
||||||
|
if (flashvarsObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries
|
||||||
|
if (typeof par.flashvars != UNDEF) {
|
||||||
|
par.flashvars += "&" + i + "=" + flashvarsObj[i];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
par.flashvars = i + "=" + flashvarsObj[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
addDomLoadEvent(function() {
|
||||||
|
createSWF(att, par, replaceElemIdStr);
|
||||||
|
if (att.id == replaceElemIdStr) {
|
||||||
|
setVisibility(replaceElemIdStr, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else if (xiSwfUrlStr && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) {
|
||||||
|
setVisibility(replaceElemIdStr, false);
|
||||||
|
addDomLoadEvent(function() {
|
||||||
|
var regObj = {};
|
||||||
|
regObj.id = regObj.altContentId = replaceElemIdStr;
|
||||||
|
regObj.width = widthStr;
|
||||||
|
regObj.height = heightStr;
|
||||||
|
regObj.expressInstall = xiSwfUrlStr;
|
||||||
|
showExpressInstall(regObj);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
getFlashPlayerVersion: function() {
|
||||||
|
return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
|
||||||
|
},
|
||||||
|
|
||||||
|
hasFlashPlayerVersion:hasPlayerVersion,
|
||||||
|
|
||||||
|
createSWF: function(attObj, parObj, replaceElemIdStr) {
|
||||||
|
if (ua.w3cdom && isDomLoaded) {
|
||||||
|
return createSWF(attObj, parObj, replaceElemIdStr);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
createCSS: function(sel, decl) {
|
||||||
|
if (ua.w3cdom) {
|
||||||
|
createCSS(sel, decl);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
addDomLoadEvent:addDomLoadEvent,
|
||||||
|
|
||||||
|
addLoadEvent:addLoadEvent,
|
||||||
|
|
||||||
|
getQueryParamValue: function(param) {
|
||||||
|
var q = doc.location.search || doc.location.hash;
|
||||||
|
if (param == null) {
|
||||||
|
return q;
|
||||||
|
}
|
||||||
|
if(q) {
|
||||||
|
var pairs = q.substring(1).split("&");
|
||||||
|
for (var i = 0; i < pairs.length; i++) {
|
||||||
|
if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
|
||||||
|
return pairs[i].substring((pairs[i].indexOf("=") + 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
},
|
||||||
|
|
||||||
|
// For internal usage only
|
||||||
|
expressInstallCallback: function() {
|
||||||
|
if (isExpressInstallActive && storedAltContent) {
|
||||||
|
var obj = getElementById(EXPRESS_INSTALL_ID);
|
||||||
|
if (obj) {
|
||||||
|
obj.parentNode.replaceChild(storedAltContent, obj);
|
||||||
|
if (storedAltContentId) {
|
||||||
|
setVisibility(storedAltContentId, true);
|
||||||
|
if (ua.ie && ua.win) {
|
||||||
|
storedAltContent.style.display = "block";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
storedAltContent = null;
|
||||||
|
storedAltContentId = null;
|
||||||
|
isExpressInstallActive = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}();
|
||||||
230
Scripts/swfobject_source.js
Normal file
230
Scripts/swfobject_source.js
Normal file
@ -0,0 +1,230 @@
|
|||||||
|
/**
|
||||||
|
* SWFObject v1.5.1: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
|
||||||
|
*
|
||||||
|
* SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
|
||||||
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
if(typeof deconcept == "undefined") var deconcept = {};
|
||||||
|
if(typeof deconcept.util == "undefined") deconcept.util = {};
|
||||||
|
if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = {};
|
||||||
|
deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey) {
|
||||||
|
if (!document.getElementById) { return; }
|
||||||
|
this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
|
||||||
|
this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
|
||||||
|
this.params = {};
|
||||||
|
this.variables = {};
|
||||||
|
this.attributes = [];
|
||||||
|
if(swf) { this.setAttribute('swf', swf); }
|
||||||
|
if(id) { this.setAttribute('id', id); }
|
||||||
|
if(w) { this.setAttribute('width', w); }
|
||||||
|
if(h) { this.setAttribute('height', h); }
|
||||||
|
if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
|
||||||
|
this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
|
||||||
|
if (!window.opera && document.all && this.installedVer.major > 7) {
|
||||||
|
// only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE
|
||||||
|
// fixes bug in some fp9 versions see http://blog.deconcept.com/2006/07/28/swfobject-143-released/
|
||||||
|
if (!deconcept.unloadSet) {
|
||||||
|
deconcept.SWFObjectUtil.prepUnload = function() {
|
||||||
|
__flash_unloadHandler = function(){};
|
||||||
|
__flash_savedUnloadHandler = function(){};
|
||||||
|
window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs);
|
||||||
|
}
|
||||||
|
window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
|
||||||
|
deconcept.unloadSet = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(c) { this.addParam('bgcolor', c); }
|
||||||
|
var q = quality ? quality : 'high';
|
||||||
|
this.addParam('quality', q);
|
||||||
|
this.setAttribute('useExpressInstall', false);
|
||||||
|
this.setAttribute('doExpressInstall', false);
|
||||||
|
var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
|
||||||
|
this.setAttribute('xiRedirectUrl', xir);
|
||||||
|
this.setAttribute('redirectUrl', '');
|
||||||
|
if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); }
|
||||||
|
}
|
||||||
|
deconcept.SWFObject.prototype = {
|
||||||
|
useExpressInstall: function(path) {
|
||||||
|
this.xiSWFPath = !path ? "expressinstall.swf" : path;
|
||||||
|
this.setAttribute('useExpressInstall', true);
|
||||||
|
},
|
||||||
|
setAttribute: function(name, value){
|
||||||
|
this.attributes[name] = value;
|
||||||
|
},
|
||||||
|
getAttribute: function(name){
|
||||||
|
return this.attributes[name] || "";
|
||||||
|
},
|
||||||
|
addParam: function(name, value){
|
||||||
|
this.params[name] = value;
|
||||||
|
},
|
||||||
|
getParams: function(){
|
||||||
|
return this.params;
|
||||||
|
},
|
||||||
|
addVariable: function(name, value){
|
||||||
|
this.variables[name] = value;
|
||||||
|
},
|
||||||
|
getVariable: function(name){
|
||||||
|
return this.variables[name] || "";
|
||||||
|
},
|
||||||
|
getVariables: function(){
|
||||||
|
return this.variables;
|
||||||
|
},
|
||||||
|
getVariablePairs: function(){
|
||||||
|
var variablePairs = [];
|
||||||
|
var key;
|
||||||
|
var variables = this.getVariables();
|
||||||
|
for(key in variables){
|
||||||
|
variablePairs[variablePairs.length] = key +"="+ variables[key];
|
||||||
|
}
|
||||||
|
return variablePairs;
|
||||||
|
},
|
||||||
|
getSWFHTML: function() {
|
||||||
|
var swfNode = "";
|
||||||
|
if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
|
||||||
|
if (this.getAttribute("doExpressInstall")) {
|
||||||
|
this.addVariable("MMplayerType", "PlugIn");
|
||||||
|
this.setAttribute('swf', this.xiSWFPath);
|
||||||
|
}
|
||||||
|
swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ (this.getAttribute('style') || "") +'"';
|
||||||
|
swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
|
||||||
|
var params = this.getParams();
|
||||||
|
for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
|
||||||
|
var pairs = this.getVariablePairs().join("&");
|
||||||
|
if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
|
||||||
|
swfNode += '/>';
|
||||||
|
} else { // PC IE
|
||||||
|
if (this.getAttribute("doExpressInstall")) {
|
||||||
|
this.addVariable("MMplayerType", "ActiveX");
|
||||||
|
this.setAttribute('swf', this.xiSWFPath);
|
||||||
|
}
|
||||||
|
swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'" style="'+ (this.getAttribute('style') || "") +'">';
|
||||||
|
swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
|
||||||
|
var params = this.getParams();
|
||||||
|
for(var key in params) {
|
||||||
|
swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
|
||||||
|
}
|
||||||
|
var pairs = this.getVariablePairs().join("&");
|
||||||
|
if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
|
||||||
|
swfNode += "</object>";
|
||||||
|
}
|
||||||
|
return swfNode;
|
||||||
|
},
|
||||||
|
write: function(elementId){
|
||||||
|
if(this.getAttribute('useExpressInstall')) {
|
||||||
|
// check to see if we need to do an express install
|
||||||
|
var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
|
||||||
|
if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
|
||||||
|
this.setAttribute('doExpressInstall', true);
|
||||||
|
this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
|
||||||
|
document.title = document.title.slice(0, 47) + " - Flash Player Installation";
|
||||||
|
this.addVariable("MMdoctitle", document.title);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){
|
||||||
|
var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
|
||||||
|
n.innerHTML = this.getSWFHTML();
|
||||||
|
return true;
|
||||||
|
}else{
|
||||||
|
if(this.getAttribute('redirectUrl') != "") {
|
||||||
|
document.location.replace(this.getAttribute('redirectUrl'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ---- detection functions ---- */
|
||||||
|
deconcept.SWFObjectUtil.getPlayerVersion = function(){
|
||||||
|
var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
|
||||||
|
if(navigator.plugins && navigator.mimeTypes.length){
|
||||||
|
var x = navigator.plugins["Shockwave Flash"];
|
||||||
|
if(x && x.description) {
|
||||||
|
PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
|
||||||
|
}
|
||||||
|
}else if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0){ // if Windows CE
|
||||||
|
var axo = 1;
|
||||||
|
var counter = 3;
|
||||||
|
while(axo) {
|
||||||
|
try {
|
||||||
|
counter++;
|
||||||
|
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+ counter);
|
||||||
|
// document.write("player v: "+ counter);
|
||||||
|
PlayerVersion = new deconcept.PlayerVersion([counter,0,0]);
|
||||||
|
} catch (e) {
|
||||||
|
axo = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else { // Win IE (non mobile)
|
||||||
|
// do minor version lookup in IE, but avoid fp6 crashing issues
|
||||||
|
// see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
|
||||||
|
try{
|
||||||
|
var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
|
||||||
|
}catch(e){
|
||||||
|
try {
|
||||||
|
var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
|
||||||
|
PlayerVersion = new deconcept.PlayerVersion([6,0,21]);
|
||||||
|
axo.AllowScriptAccess = "always"; // error if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code)
|
||||||
|
} catch(e) {
|
||||||
|
if (PlayerVersion.major == 6) {
|
||||||
|
return PlayerVersion;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
|
||||||
|
} catch(e) {}
|
||||||
|
}
|
||||||
|
if (axo != null) {
|
||||||
|
PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return PlayerVersion;
|
||||||
|
}
|
||||||
|
deconcept.PlayerVersion = function(arrVersion){
|
||||||
|
this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0;
|
||||||
|
this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0;
|
||||||
|
this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0;
|
||||||
|
}
|
||||||
|
deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
|
||||||
|
if(this.major < fv.major) return false;
|
||||||
|
if(this.major > fv.major) return true;
|
||||||
|
if(this.minor < fv.minor) return false;
|
||||||
|
if(this.minor > fv.minor) return true;
|
||||||
|
if(this.rev < fv.rev) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
/* ---- get value of query string param ---- */
|
||||||
|
deconcept.util = {
|
||||||
|
getRequestParameter: function(param) {
|
||||||
|
var q = document.location.search || document.location.hash;
|
||||||
|
if (param == null) { return q; }
|
||||||
|
if(q) {
|
||||||
|
var pairs = q.substring(1).split("&");
|
||||||
|
for (var i=0; i < pairs.length; i++) {
|
||||||
|
if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
|
||||||
|
return pairs[i].substring((pairs[i].indexOf("=")+1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* fix for video streaming bug */
|
||||||
|
deconcept.SWFObjectUtil.cleanupSWFs = function() {
|
||||||
|
var objects = document.getElementsByTagName("OBJECT");
|
||||||
|
for (var i = objects.length - 1; i >= 0; i--) {
|
||||||
|
objects[i].style.display = 'none';
|
||||||
|
for (var x in objects[i]) {
|
||||||
|
if (typeof objects[i][x] == 'function') {
|
||||||
|
objects[i][x] = function(){};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* add document.getElementById if needed (mobile IE < 5) */
|
||||||
|
if (!document.getElementById && document.all) { document.getElementById = function(id) { return document.all[id]; }}
|
||||||
|
|
||||||
|
/* add some aliases for ease of use/backwards compatibility */
|
||||||
|
var getQueryParamValue = deconcept.util.getRequestParameter;
|
||||||
|
var FlashObject = deconcept.SWFObject; // for legacy support
|
||||||
|
var SWFObject = deconcept.SWFObject;
|
||||||
32
css.css
32
css.css
@ -1,3 +1,7 @@
|
|||||||
|
body {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.credits {
|
.credits {
|
||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
@ -41,7 +45,7 @@
|
|||||||
}
|
}
|
||||||
.menu {
|
.menu {
|
||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-size: 14px;
|
font-size: 13px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@ -84,7 +88,7 @@
|
|||||||
.menu2 {
|
.menu2 {
|
||||||
|
|
||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-size: 14px;
|
font-size: 13px;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -101,3 +105,27 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.texto-pie {
|
||||||
|
font-family: Verdana, Geneva, sans-serif;
|
||||||
|
font-size: 10px;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.reservas-online {
|
||||||
|
font-family: Verdana, Geneva, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
z-index: 99;
|
||||||
|
position: relative;
|
||||||
|
top: 165px;
|
||||||
|
left: 500px;
|
||||||
|
text-align: right;
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FlashID {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.style7 {
|
.style7 {
|
||||||
@ -49,8 +46,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -69,240 +66,253 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="540" align="left" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> ·<a href="galeria_eng.htm" class="menu">Images </a>·<span class="menu2">Lodging</span> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</tr>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</table>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
<p><span class="titulos1"><br>
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
LODGING <br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<br>
|
</div>
|
||||||
</span><span class="texto">•<strong> </strong><strong>Eight double rooms</strong> with bathroom; one of them suitable for disabled people<strong>.</strong><br>
|
<!--[if !IE]>-->
|
||||||
• <strong>Color TV</strong>, tea service and hairdryer available in all rooms.<br>
|
</object>
|
||||||
• One living-room with chimney, library and sun gallery.<br>
|
<!--<![endif]-->
|
||||||
• Caring service for <strong>pets</strong> (please, consult previously if you want to bring yours).<br>
|
</object>
|
||||||
• <strong>Private parking. </strong></span>
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
<br>
|
</td></tr>
|
||||||
<span class="texto">• <strong>Wireless Internet connection available.</strong></span></p>
|
<tr align="left" valign="top">
|
||||||
<blockquote>
|
<td>
|
||||||
<blockquote>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<blockquote>
|
<tr>
|
||||||
<blockquote>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
<blockquote>
|
<td width="540" align="left" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> ·<a href="galeria_eng.htm" class="menu">Images </a>·<span class="menu2">Lodging</span> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
||||||
<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>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
</blockquote>
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
</blockquote>
|
</tr>
|
||||||
</blockquote>
|
</table>
|
||||||
</blockquote>
|
<p><span class="titulos1"><br>
|
||||||
</blockquote>
|
LODGING <br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<br>
|
||||||
<tr>
|
</span><span class="texto">•<strong> </strong><strong>Eight double rooms</strong> with bathroom; one of them suitable for disabled people<strong>.</strong><br>
|
||||||
<td width="53%" align="left" valign="top">
|
• <strong>Color TV</strong>, tea service and hairdryer available in all rooms.<br>
|
||||||
<p class="titulos4">Services<span class="texto"><br>
|
• One living-room with chimney, library and sun gallery.<br>
|
||||||
<br>
|
• Caring service for <strong>pets</strong> (please, consult previously if you want to bring yours).<br>
|
||||||
• Season's menu for lunch or dinners, we offer also a cold meals - snacks menu during all the year.<br>
|
• <strong>Private parking. </strong></span> <br>
|
||||||
• We serve suppers and foods under demand.<br>
|
<span class="texto">• <strong>Wireless Internet connection available.</strong></span></p>
|
||||||
• We can prepare lunch-boxes for excursions.<br>
|
<blockquote>
|
||||||
• We organize events and meetings .</span><br>
|
<blockquote>
|
||||||
<p><a href="mailto:info@villadepalacios.com"><br>
|
<blockquote>
|
||||||
</a></span></p></td>
|
<blockquote>
|
||||||
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
<blockquote>
|
||||||
<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>
|
<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>
|
||||||
<br>
|
</blockquote>
|
||||||
We can contact with different local companies to organize active tourism activities:<br>
|
</blockquote>
|
||||||
<br>
|
</blockquote>
|
||||||
• <strong>Sports</strong>: <br>
|
</blockquote>
|
||||||
Quads, horse-riding, kayak, rafting, cave visiting, trekking, etc.<br>
|
</blockquote>
|
||||||
<br>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
• <strong>Culture</strong>: <br>
|
<tr>
|
||||||
Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), prehistoric art, romanic, boat visit to the Santoña's bay, etc.<br>
|
<td width="53%" align="left" valign="top"><p class="titulos4">Services<span class="texto"><br>
|
||||||
</span></td>
|
<br>
|
||||||
</tr>
|
• Season's menu for lunch or dinners, we offer also a cold meals - snacks menu during all the year.<br>
|
||||||
</table>
|
• We serve suppers and foods under demand.<br>
|
||||||
<span class="titulos4">The rooms</span><br>
|
• We can prepare lunch-boxes for excursions.<br>
|
||||||
<br>
|
• We organize events and meetings .</span><br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<p><a href="mailto:info@villadepalacios.com"><br>
|
||||||
<tr>
|
</a></p></td>
|
||||||
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. The Cow</strong></span><span class="texto"><strong><br>
|
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<br>
|
<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>
|
||||||
</strong> It is oriented to three facades: East, North and Western. It's located in the anexed wing, and it has a great terrace with direct exit to the garden. This room, of colonial style, is very confy.<br>
|
<br>
|
||||||
<br>
|
We can contact with different local companies to organize active tourism activities:<br>
|
||||||
</span>
|
<br>
|
||||||
</div>
|
• <strong>Sports</strong>: <br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
Quads, horse-riding, kayak, rafting, cave visiting, trekking, etc.<br>
|
||||||
<tr>
|
<br>
|
||||||
<td width="49%" align="center" valign="top" class="menu"> <img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
|
• <strong>Culture</strong>: <br>
|
||||||
<td width="25%" align="center">
|
Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), prehistoric art, romanic, boat visit to the Santoña's bay, etc.<br>
|
||||||
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
|
</span></td>
|
||||||
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table></td>
|
<span class="titulos4">The rooms</span><br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<tr>
|
||||||
</tr>
|
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. The Cow</strong></span><span class="texto"><strong><br>
|
||||||
<tr>
|
<br>
|
||||||
<td><div align="left" class="texto">
|
</strong> It is oriented to three facades: East, North and Western. It's located in the anexed wing, and it has a great terrace with direct exit to the garden. This room, of colonial style, is very confy.<br>
|
||||||
<div align="justify"><br>
|
<br>
|
||||||
<strong class="titulos3">2. The Rabbit</strong><br>
|
</span></div>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
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 "<em>Punishment of the rage</em>" that characterizes the Aras' valley.<img src="../img_nav/transp.gif" width="5" height="5"> <br>
|
<tr>
|
||||||
<br>
|
<td width="49%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
|
||||||
</div>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"></div></td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
||||||
<tr>
|
</tr>
|
||||||
<td align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"> </td>
|
</table></td>
|
||||||
<td align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
</table>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
</div> </td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><div align="left" class="texto">
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<div align="justify"><br>
|
||||||
</tr>
|
<strong class="titulos3">2. The Rabbit</strong><br>
|
||||||
<tr>
|
<br>
|
||||||
<td><div align="justify"><span class="texto"><strong class="titulos3"><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 "<em>Punishment of the rage</em>" that characterizes the Aras' valley.<img src="../img_nav/transp.gif" width="5" height="5"> <br>
|
||||||
</strong>
|
<br>
|
||||||
<strong class="titulos3">3. The Rooster</strong><br>
|
</div>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
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>
|
<tr>
|
||||||
<br>
|
<td align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"></td>
|
||||||
</span>
|
<td align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
||||||
</div>
|
</tr>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</table>
|
||||||
<tr>
|
</div></td>
|
||||||
<td width="50%" align="center" valign="top">
|
</tr>
|
||||||
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
|
<tr>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210" hspace="2"></td>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </td>
|
<tr>
|
||||||
</tr>
|
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
<tr>
|
</strong> <strong class="titulos3">3. The Rooster</strong><br>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<br>
|
||||||
</tr>
|
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>
|
||||||
<tr>
|
<br>
|
||||||
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
|
</span></div>
|
||||||
</strong></span><strong class="titulos3">4. The Cat</strong><br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<br>
|
<tr>
|
||||||
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>
|
<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>
|
||||||
<br>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</span>
|
</tr>
|
||||||
</div>
|
</table></td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="50%" align="center" valign="top" class="menu">
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
|
</tr>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210" hspace="2"></td>
|
<tr>
|
||||||
</tr>
|
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
|
||||||
</table> </td>
|
</strong></span><strong class="titulos3">4. The Cat</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
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>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<br>
|
||||||
</tr>
|
</span></div>
|
||||||
<tr>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
<tr>
|
||||||
</strong>
|
<td width="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<strong class="titulos3">5. The Pig</strong><br>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<br>
|
</tr>
|
||||||
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>
|
</table></td>
|
||||||
<br>
|
</tr>
|
||||||
</span></font>
|
<tr>
|
||||||
</div>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</tr>
|
||||||
<tr>
|
<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><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210" hspace="2"></td>
|
</strong> <strong class="titulos3">5. The Pig</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
</table> </td>
|
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>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
</span></font></div>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</strong><strong class="titulos3">6. The Robin</strong><br>
|
</tr>
|
||||||
<br>
|
</table></td>
|
||||||
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>
|
</tr>
|
||||||
<br>
|
<tr>
|
||||||
</span>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
</div>
|
</tr>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<tr>
|
||||||
<tr>
|
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
<td width="50%" align="center" valign="top"> <img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
</strong><strong class="titulos3">6. The Robin</strong><br>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
<br>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
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>
|
||||||
</tr>
|
<br>
|
||||||
</table> </td>
|
</span></div>
|
||||||
</tr>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</tr>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<tr>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
||||||
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
</tr>
|
||||||
</strong>
|
</table></td>
|
||||||
<strong class="titulos3">7. The Goat</strong><br>
|
</tr>
|
||||||
<br>
|
<tr>
|
||||||
The white room. It is oriented to the South facade with views to the hill called "Punishment of the Rage" 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>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<br>
|
</tr>
|
||||||
</span>
|
<tr>
|
||||||
</div>
|
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</strong> <strong class="titulos3">7. The Goat</strong><br>
|
||||||
<tr>
|
<br>
|
||||||
<td width="50%" align="center" valign="top"> <img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
The white room. It is oriented to the South facade with views to the hill called "Punishment of the Rage" 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>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
<br>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
</span></div>
|
||||||
</tr>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
</table></td>
|
<tr>
|
||||||
</tr>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<tr>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
</table></td>
|
||||||
<td><div align="left" class="texto">
|
</tr>
|
||||||
<div align="justify"><strong class="titulos3"><br>
|
<tr>
|
||||||
</strong>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<strong class="titulos3">8. The Horse</strong><br>
|
</tr>
|
||||||
<br>
|
<tr>
|
||||||
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>
|
<td><div align="left" class="texto">
|
||||||
<br>
|
<div align="justify"><strong class="titulos3"><br>
|
||||||
</div>
|
</strong> <strong class="titulos3">8. The Horse</strong><br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<br>
|
||||||
<tr>
|
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>
|
||||||
<td align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
|
<br>
|
||||||
<td align="center">
|
</div>
|
||||||
<div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<td align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
<tr>
|
||||||
</tr>
|
<td align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"></td>
|
||||||
</table>
|
<td align="center"><div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
||||||
</div> </td>
|
<td align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
</table>
|
||||||
<td></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
<tr>
|
||||||
<!-- InstanceEndEditable --></td>
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,9 +38,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -61,99 +58,121 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="540" align="left" 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">Lodging</a> ·<span class="menu2">The region</span> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</tr>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</table>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
<span><span class="titulos1"> THE REGION: ASÓN-AGÜERA </span></span><br>
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
<br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
</div>
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td rowspan="2" valign="top" class="texto">
|
</object>
|
||||||
<p align="justify" class="texto"><span class="texto"><em class="titulos3">La villa de Palacios</em> is placed in the northern region of Asón-Agüera, midway between the mountain and the sea.<br>
|
<!--<![endif]-->
|
||||||
<br>
|
</object>
|
||||||
<span class="titulos4"> The mountain</span><br>
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
The region of <strong>Asón-Agü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ó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á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>
|
</td></tr>
|
||||||
<br>
|
<tr align="left" valign="top">
|
||||||
<span class="titulos4">The sea</span> <br>
|
<td>
|
||||||
At three kilometers from our hotel begins the <strong>Natural Reserve of the marshes of Santoñ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ños, Bárcena of Cicero , Colindres, Escalante, Laredo, Clean, Noja, Santoñ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>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<br>
|
<tr>
|
||||||
<span class="titulos4">Prehistoric Art</span><br>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
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>
|
<td width="540" align="left" 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">Lodging</a> ·<span class="menu2">The region</span> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
||||||
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>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<br>
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
<span class="titulos4">Cities & culture</span><br>
|
</tr>
|
||||||
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>
|
</table>
|
||||||
<br>
|
<span><span class="titulos1"> THE REGION: ASÓN-AGÜERA </span></span><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><p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
|
<br>
|
||||||
<span class="credits"><strong>Guggenheim-Bilbao Museum</strong></span></p>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
</span>
|
<tr>
|
||||||
<p><span class="texto">
|
<td rowspan="2" valign="top" class="texto"><p align="justify" class="texto">
|
||||||
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>
|
<span class="texto"><em class="titulos3">La villa de Palacios</em> is placed in the northern region of Asón-Agüera, midway between the mountain and the sea.<br>
|
||||||
Outside, but not far from Santander we recommend to visit the Altamira's Museum of Santillana, the Nature's Museum in Cabezón de la Sal, and the National Park of Cabárceno, plenty of wild and exotic species in complete freedom.</span></p>
|
<br>
|
||||||
<p><img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
<span class="titulos4"> The mountain</span><br>
|
||||||
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
The region of <strong>Asón-Agü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ó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á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>
|
||||||
<td width="10" rowspan="2" valign="top"> <img src="../img_nav/transp.gif" width="10" height="10"></td>
|
<br>
|
||||||
<td width="220" valign="top">
|
<span class="titulos4">The sea</span> <br>
|
||||||
<div align="right">
|
At three kilometers from our hotel begins the <strong>Natural Reserve of the marshes of Santoñ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ños, Bárcena of Cicero , Colindres, Escalante, Laredo, Clean, Noja, Santoñ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>
|
||||||
<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>
|
||||||
<br>
|
<span class="titulos4">Prehistoric Art</span><br>
|
||||||
</span>
|
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>
|
||||||
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><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>
|
||||||
A perfect place for the practice of trekking.
|
<br>
|
||||||
</span><span class="credits"><strong></strong></span><br/><br/>
|
<span class="titulos4">Cities & 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>
|
||||||
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
<br>
|
||||||
<span class="credits"><strong>Laredo</strong> (with Santoña) <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>
|
<p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
|
||||||
</span> <img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
<span class="credits"><strong>Guggenheim-Bilbao Museum</strong></span></p>
|
||||||
<span class="credits"><strong>Covalanas</strong><br>
|
</span>
|
||||||
<br>
|
<p><span class="texto"> 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>
|
||||||
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
Outside, but not far from Santander we recommend to visit the Altamira's Museum of Santillana, the Nature's Museum in Cabezón de la Sal, and the National Park of Cabárceno, plenty of wild and exotic species in complete freedom.</span></p>
|
||||||
Fisher's port of<strong> Colindres</strong>.<br>
|
<p><img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
||||||
</span><br>
|
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
||||||
|
<td width="10" rowspan="2" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
</div> </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>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
</span> <img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
<td valign="top">
|
A perfect place for the practice of trekking. </span><span class="credits"></span><br/>
|
||||||
<div align="right">
|
<br/>
|
||||||
<p><span class="titulos3"><strong><br>
|
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
||||||
<font size="2" face="Verdana">Some useful web-site</font></strong><font size="2" face="Verdana">s</font><br>
|
<span class="credits"><strong>Laredo</strong> (with Santoña) <br>
|
||||||
</span></span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<br>
|
<br>
|
||||||
</a><a href="http://www.altoason.com" target="_blank" class="textoNegrita">www.altoason.com<br>
|
</span> <img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
||||||
</a><a href="http://www.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
|
<span class="credits"><strong>Covalanas</strong><br>
|
||||||
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
|
<br>
|
||||||
www.cantabria.com</a><br>
|
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<br>
|
Fisher's port of<strong> Colindres</strong>.<br>
|
||||||
|
</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><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>
|
</a><a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita">www.guggenheim-bilbao.es</a></p>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table></td>
|
||||||
<!-- InstanceEndEditable --></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
||||||
@ -48,8 +45,8 @@ function MM_openBrWindow(theURL,winName,features) { //v2.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -68,66 +65,94 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<span class="menu2">Reserves & Contact </span>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</tr>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</table>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
</a><span class="titulos1">
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
RESERVES & CONTACT </span></span><br>
|
</div>
|
||||||
<br>
|
<!--[if !IE]>-->
|
||||||
<table width="100%" border="0">
|
</object>
|
||||||
<tr valign="top">
|
<!--<![endif]-->
|
||||||
<td width="42%" class="texto"><p>To make a reservation or receive more information, please do not hesitate to contact us by phone <br>
|
</object>
|
||||||
or e-mail.<br>
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
<span><br>
|
</td></tr>
|
||||||
<a href="mailto:info@villadepalacios.com" class="titulos3">
|
<tr align="left" valign="top">
|
||||||
info@villadepalacios.com</a><br>
|
<td>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
</span><span class="titulos3">Barrio Palacios 150<br>
|
<tr>
|
||||||
San Miguel de Aras. Voto <br>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
39766 - Cantabria<br>
|
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<span class="menu2">Reserves & Contact </span>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
||||||
<br>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
Tel. 942 679 150 <br>
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
Mov. 627 030 030 <br>
|
</tr>
|
||||||
</span></p>
|
</table>
|
||||||
<p align="left"><span class="puntitos"><strong>To reach the hotel:</strong><br>
|
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
||||||
Take the way out at the Km. 177 (Treto-Cicero) from the motorway Santander-Bilbao. <br>
|
</a><span class="titulos1"> RESERVES & CONTACT </span></span><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 “La Villa de Palacios”.</span></blockquote></p> </td>
|
<br>
|
||||||
<td height="222" colspan="2"> <div align="center">
|
<table width="100%" border="0">
|
||||||
<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>
|
<tr valign="top">
|
||||||
</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>
|
<td width="42%" class="texto"><p>To make a reservation or receive more information, please do not hesitate to contact us by phone <br>
|
||||||
</span><span class="credits">Click on the image to get a larger view and print.</span></p>
|
or e-mail.<br>
|
||||||
</div></td>
|
<span><br>
|
||||||
</tr>
|
<a href="mailto:info@villadepalacios.com" class="titulos3"> info@villadepalacios.com</a><br>
|
||||||
</table>
|
<br>
|
||||||
<p align="center"><span class="titulos4">G.P.S. Coordinates</span><br>
|
</span><span class="titulos3">Barrio Palacios 150<br>
|
||||||
<span class="textoNegrita"><strong>Longitud</strong></span><strong>e: </strong> W03 degrees 30 minutes 57 seconds.<BR>
|
San Miguel de Aras. Voto <br>
|
||||||
<strong>Latitude: </strong>N43 degrees 19 minutes 52 seconds.</p>
|
39766 - Cantabria<br>
|
||||||
<!-- InstanceEndEditable --></td>
|
<br>
|
||||||
|
Tel. +34 942 679 150 <br>
|
||||||
|
Fax. +34 942 679 241 <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 “La Villa de Palacios”.</span></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 30 minutes 57 seconds.<BR>
|
||||||
|
<strong>Latitude: </strong>N43 degrees 19 minutes 52 seconds.</p></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,125 +1,133 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
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. ">
|
<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.-->
|
<!-- 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,
|
<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,
|
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,
|
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,
|
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">
|
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,
|
<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,
|
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,
|
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,
|
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">
|
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.
|
<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 ">
|
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.
|
<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 ">
|
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
||||||
<META NAME="Language" content="español">
|
<META NAME="Language" content="español">
|
||||||
<META NAME="Revisit" content="7 days">
|
<META NAME="Revisit" content="7 days">
|
||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function MM_preloadImages() { //v3.0
|
function MM_preloadImages() { //v3.0
|
||||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
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++)
|
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];}}
|
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
|
|
||||||
function MM_reloadPage(init) { //reloads the window if Nav4 resized
|
function MM_reloadPage(init) { //reloads the window if Nav4 resized
|
||||||
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
|
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
|
||||||
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
|
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
|
||||||
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
|
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
|
||||||
}
|
}
|
||||||
MM_reloadPage(true);
|
MM_reloadPage(true);
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<style type="text/css">
|
<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;}
|
.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;}
|
.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;}
|
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
|
||||||
body {
|
body {
|
||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0" bgcolor="#999999">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="right" valign="top" height="487">
|
<td align="right" valign="top" height="487">
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="23" rowspan="3"> </td>
|
<td width="23" rowspan="3"> </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="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"> </td>
|
<td width="6" rowspan="3"> </td>
|
||||||
<td width="280" valign="top"><br> <img src="../img_nav/nueva%20galeria/INTERIORES2.JPG" width="280" height="210" border="0"></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"> </td>
|
<td width="12" rowspan="3" valign="top"> </td>
|
||||||
<td width="12" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA5.JPG" width="280" height="373" border="0"></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>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"> </td>
|
<td valign="top"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
|
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="23" rowspan="3"> </td>
|
<td width="23" rowspan="3"> </td>
|
||||||
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/ENTORNO.JPG" width="280" height="210" border="0"></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"> </td>
|
<td width="6" rowspan="3"> </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="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"> </td>
|
<td width="12" rowspan="3" valign="top"> </td>
|
||||||
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
|
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="280" valign="middle"> </td>
|
<td width="280" valign="middle"> </td>
|
||||||
<td width="12" valign="middle"> </td>
|
<td width="12" valign="middle"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<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="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>
|
<td width="12" valign="top"><img src="../img_nav/nueva%20galeria/DSC08342.JPG" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </td>
|
</table> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
</tr>
|
<table width="100%" border="0">
|
||||||
</table>
|
<tr>
|
||||||
</td>
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
</tr>
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
</table>
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
</td>
|
||||||
</body>
|
</tr>
|
||||||
</html>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.style4 {font-style: italic}
|
.style4 {font-style: italic}
|
||||||
@ -53,8 +50,8 @@ function MM_openBrWindow(theURL,winName,features) { //v2.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -73,125 +70,152 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!--[if !IE]>-->
|
||||||
<tr>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<!--<![endif]-->
|
||||||
<td width="540" align="left" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> ·<span class="menu2">Images </span>·<a href="alojamiento_eng.htm" class="menu">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
<param name="quality" value="high">
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="wmode" value="transparent">
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</tr>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
</table>
|
<div>
|
||||||
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
|
<tr>
|
||||||
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
|
<td width="540" align="left" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> ·<span class="menu2">Images </span>·<a href="alojamiento_eng.htm" class="menu">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
||||||
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
<span class="titulos1"><br>
|
<span class="titulos1"><br>
|
||||||
IMAGES GALLERY </span></span><span class="texto"><br>
|
IMAGES GALLERY </span><span class="texto"><br>
|
||||||
<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>
|
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><br>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
|
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="90%" valign="top"><span class="titulos4">Indoors</span> <span class="textoNegrita">Common areas</span></td>
|
<td width="90%" valign="top"><span class="titulos4">Indoors</span> <span class="textoNegrita">Common areas</span></td>
|
||||||
<td width="10%" valign="bottom">
|
<td width="10%" valign="bottom"> </td>
|
||||||
<div align="right"></div></td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES3.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES6.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table> <br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="93%" valign="top"><span class="titulos4">The casona </span><span class="textoNegrita">A hotel full of details</span></td>
|
<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 width="7%" valign="bottom"></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA7.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA7.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA12.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08227.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08227.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08236.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table> <br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<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="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 width="7%" valign="bottom"></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08252.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08252.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA5.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA1.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</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>
|
||||||
<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>
|
||||||
<br>
|
</span></p></td>
|
||||||
</span></p></td>
|
</tr>
|
||||||
</tr>
|
</table></td>
|
||||||
</table>
|
|
||||||
<!-- InstanceEndEditable --></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
161
eng/home_eng.htm
161
eng/home_eng.htm
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
||||||
@ -69,8 +66,8 @@ function MM_showHideLayers() { //v6.0
|
|||||||
.style5 {color: #003300}
|
.style5 {color: #003300}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -89,76 +86,102 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!--[if !IE]>-->
|
||||||
<tr>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<!--<![endif]-->
|
||||||
<td width="540" align="left" bgcolor="#333333" class="menu"><span class="menu2">Presentation</span> ·<a href="galeria_eng.htm" class="menu">·Images</a>·<a href="alojamiento_eng.htm" class="menu">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
<param name="quality" value="high">
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="wmode" value="transparent">
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</tr>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
</table>
|
<div>
|
||||||
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
<br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<table width="100%" border="0">
|
</div>
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="33%" valign="bottom"><span><span class="titulos1"> </span><span><span class="titulos1">WELCOME</span></span><span class="titulos1"> </span></span>
|
</object>
|
||||||
<span class="titulos3 style13"></span></td>
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
|
<tr>
|
||||||
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
|
<td width="540" align="left" bgcolor="#333333" class="menu"><span class="menu2">Presentation</span> ·<a href="galeria_eng.htm" class="menu">·Images</a>·<a href="alojamiento_eng.htm" class="menu">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<a href="tarifas_eng.htm" class="menu">Prices </a></td>
|
||||||
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<span></span><br>
|
<br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<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>
|
<td width="33%" valign="bottom"><span><span class="titulos1"> </span><span class="titulos1">WELCOME</span><span class="titulos1"> </span></span> <span class="titulos3 style13"></span></td>
|
||||||
<br>
|
</tr>
|
||||||
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>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
<strong>A wide gardened land of 8.000 m²</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>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<br>
|
<tr>
|
||||||
<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ña, or practice some trekking, speleology and adventure sports in the neighboring mountains.<span class="titulos2"></span><br>
|
<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>
|
||||||
</div></td>
|
<br>
|
||||||
<td width="52%" height="289" valign="middle"> <div align="right">
|
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>
|
||||||
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
<br>
|
||||||
<span class="titulos4"><br>
|
<strong>A wide gardened land of 8.000 m²</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>
|
||||||
Welcome to the Villa de Palacios***</span><br>
|
<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ña, or practice some trekking, speleology and adventure sports in the neighboring mountains.<span class="titulos2"></span><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>
|
</div></td>
|
||||||
</p>
|
<td width="52%" height="289" valign="middle"><div align="right">
|
||||||
</div></td>
|
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
||||||
</tr>
|
<span class="titulos4"><br>
|
||||||
<tr align="left" valign="top">
|
Welcome to the Villa de Palacios***</span><br>
|
||||||
<td height="108" colspan="2" class="texto"> <br>
|
<br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span><br>
|
||||||
<tr>
|
</p>
|
||||||
<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>
|
</div></td>
|
||||||
<td width="65%" valign="top" class="texto"><span class="palacios">La Villa de Palacios holds the category of <em>"Casonas (country hotels) and Palaces of Cantabria"</em> the clasification for rural establishments that list the buildings of special architectural values.<br>
|
</tr>
|
||||||
<br>
|
<tr align="left" valign="top">
|
||||||
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>
|
<td height="108" colspan="2" class="texto"><br>
|
||||||
www.calidadcantabria.com</a> </td>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
</tr>
|
<tr>
|
||||||
</table></td>
|
<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>
|
||||||
</tr>
|
<td width="65%" valign="top" class="texto"><span class="palacios">La Villa de Palacios holds the category of <em>"Casonas (country hotels) and Palaces of Cantabria"</em> the clasification for rural establishments that list the buildings of special architectural values.<br>
|
||||||
</table>
|
<br>
|
||||||
<!-- InstanceEndEditable --></td>
|
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></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,36 +1,41 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>:::Special Offers:::</title>
|
<title>:::Special Offers:::</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link href="../css.css" rel="stylesheet" type="text/css">
|
<link href="../css.css" rel="stylesheet" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body bgcolor="#333333" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="381" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="68" align="left" valign="top" background="../img_nav/hoja.gif">
|
<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>
|
<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"> Winter
|
<td width="313" align="left" valign="middle" bgcolor="#333333" class="credits"><font size="4"> Winter
|
||||||
promotions </font></td>
|
promotions </font></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="texto">
|
<td colspan="2" class="texto">
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<p><br>
|
<p><br>
|
||||||
<span class="credits"><font size="3"><font size="2"><strong><font size="3">3x2</font></strong></font></font></span><font size="2">
|
<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>
|
- Stay for <strong>3 nights</strong> pay <strong>just 2</strong>.<strong><br>
|
||||||
</strong>or<br>
|
</strong>or<br>
|
||||||
<span class="credits"><strong><font size="3">Free dinner </font></strong></span>-
|
<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.
|
We invite you to a free dinner with <strong>2 night</strong> bookings.
|
||||||
</font></p>
|
</font></p>
|
||||||
<p class="menu"><span class="commentaires">Book now, the promotions are
|
<p class="menu"><span class="commentaires">Book now, the promotions are
|
||||||
vaild only until <strong>31 of March</strong> <br>
|
vaild only until <strong>31 of March</strong> <br>
|
||||||
(and not during the holidays of San Jose 18-21 March).</span><br>
|
(and not during the holidays of San Jose 18-21 March).</span><br>
|
||||||
<br>
|
<br>
|
||||||
</p>
|
</p>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
<script type="text/javascript">
|
||||||
</html>
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -1,77 +1,82 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>:::Special Offers:::</title>
|
<title>:::Special Offers:::</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link href="../css.css" rel="stylesheet" type="text/css">
|
<link href="../css.css" rel="stylesheet" type="text/css">
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
body {
|
body {
|
||||||
background-color: #CCCC99;
|
background-color: #CCCC99;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style></head>
|
||||||
|
|
||||||
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
|
||||||
<tr align="center" valign="middle" bgcolor="#FFFFFF">
|
<tr align="center" valign="middle" bgcolor="#FFFFFF">
|
||||||
<td height="20" colspan="2">
|
<td height="20" colspan="2">
|
||||||
<div align="center" class="credits"></div>
|
<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>
|
<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>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="texto"><div align="left"><br>
|
<td colspan="2" class="texto"><div align="left"><br>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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 €</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>
|
<td width="81" align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">75 €</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>
|
<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>
|
<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>
|
<span class="textoNegrita">Included:<br>
|
||||||
- Welcome present<br>
|
- Welcome present<br>
|
||||||
- 2 hotel nights<br>
|
- 2 hotel nights<br>
|
||||||
- 2 breakfast<br>
|
- 2 breakfast<br>
|
||||||
- 1 romantic dinner<br>
|
- 1 romantic dinner<br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80 €</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>
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80 €</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>
|
<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>
|
<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 hotel nights<br>
|
||||||
- 2 breakfast<br>
|
- 2 breakfast<br>
|
||||||
- 1 QUAD ride trough the Aras Valley</span><span class="textoNegrita"> or cave exploration <br>
|
- 1 QUAD ride trough the Aras Valley</span><span class="textoNegrita"> or cave exploration <br>
|
||||||
(diferent levels) <br>
|
(diferent levels) <br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 €</font></strong></font></font></span><br>
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 €</font></strong></font></font></span><br>
|
||||||
<span class="puntitos"><strong> total</strong></span> <span class="puntitos"><strong><br>
|
<span class="puntitos"><strong> total</strong></span> <span class="puntitos"><strong><br>
|
||||||
</strong></span></td>
|
</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"> </font><br>
|
<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"> </font><br>
|
||||||
<span class="textoNegrita">promotion A (4 persons):<br>
|
<span class="textoNegrita">promotion A (4 persons):<br>
|
||||||
- 2 nights in double room<br>
|
- 2 nights in double room<br>
|
||||||
- 2 added beds<br>
|
- 2 added beds<br>
|
||||||
- 4 breakfast</span><span class="textoNegrita"><br>
|
- 4 breakfast</span><span class="textoNegrita"><br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 €<br>
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 €<br>
|
||||||
</font></strong></font></font></span><span class="puntitos"><strong> total<br>
|
</font></strong></font></font></span><span class="puntitos"><strong> total<br>
|
||||||
</strong></span></td>
|
</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"> </font><br>
|
<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"> </font><br>
|
||||||
<span class="textoNegrita">promotion B (6 persons):</span><span class="textoNegrita"><br>
|
<span class="textoNegrita">promotion B (6 persons):</span><span class="textoNegrita"><br>
|
||||||
- 2 nights in 2 double room<br>
|
- 2 nights in 2 double room<br>
|
||||||
- 2 added beds<br>
|
- 2 added beds<br>
|
||||||
- 6 breakfast</span><span class="textoNegrita"><br>
|
- 6 breakfast</span><span class="textoNegrita"><br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="commentaires"><div align="center"><br>
|
<td colspan="2" class="commentaires"><div align="center"><br>
|
||||||
This promotions are valid until 29th July, 7% V.A.T. not included.<br>
|
This promotions are valid until 29th July, 7% V.A.T. not included.<br>
|
||||||
<br>
|
<br>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
<script type="text/javascript">
|
||||||
</html>
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -1,228 +1,213 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
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. ">
|
<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.-->
|
<!-- 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,
|
<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,
|
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,
|
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,
|
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">
|
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,
|
<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,
|
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,
|
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,
|
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">
|
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.
|
<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 ">
|
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.
|
<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 ">
|
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
||||||
<META NAME="Language" content="español">
|
<META NAME="Language" content="español">
|
||||||
<META NAME="Revisit" content="7 days">
|
<META NAME="Revisit" content="7 days">
|
||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<!-- InstanceEndEditable -->
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<script language="JavaScript">
|
||||||
<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();
|
||||||
function MM_preloadImages() { //v3.0
|
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
|
||||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||||
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>
|
||||||
//-->
|
<style type="text/css">
|
||||||
</script>
|
<!--
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
.style12 { line-height: normal;
|
||||||
<style type="text/css">
|
font-variant: normal;
|
||||||
<!--
|
color: #FFFFFF;
|
||||||
.style12 { line-height: normal;
|
text-decoration: none;
|
||||||
font-variant: normal;
|
background-color: #669900;
|
||||||
color: #FFFFFF;
|
font-family: "Times New Roman", Times, serif;
|
||||||
text-decoration: none;
|
font-size: 18px;
|
||||||
background-color: #669900;
|
font-style: italic;
|
||||||
font-family: "Times New Roman", Times, serif;
|
}
|
||||||
font-size: 18px;
|
.style15 {font-size: 10px}
|
||||||
font-style: italic;
|
.style8 { font-size: 14px;
|
||||||
}
|
font-weight: bold;
|
||||||
.style15 {font-size: 10px}
|
}
|
||||||
.style8 { font-size: 14px;
|
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
|
||||||
font-weight: bold;
|
-->
|
||||||
}
|
</style>
|
||||||
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
-->
|
<!--
|
||||||
</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();
|
||||||
function MM_reloadPage(init) { //reloads the window if Nav4 resized
|
}
|
||||||
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
|
MM_reloadPage(true);
|
||||||
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
|
//-->
|
||||||
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
|
</script>
|
||||||
}
|
<style type="text/css">
|
||||||
MM_reloadPage(true);
|
<!--
|
||||||
//-->
|
body {
|
||||||
</script>
|
background-color: #DCDCB8;
|
||||||
<style type="text/css">
|
}
|
||||||
<!--
|
-->
|
||||||
body {
|
</style>
|
||||||
background-color: #DCDCB8;
|
</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">
|
||||||
</style>
|
<tr align="left" valign="top">
|
||||||
</head>
|
<td><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">
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<param name="quality" value="high">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<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>
|
||||||
<tr align="left" valign="top">
|
</object>
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
||||||
<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">
|
<tr>
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<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 & Contact</a></td>
|
||||||
<param name="quality" value="high">
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
<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>
|
</tr>
|
||||||
</object>
|
</table>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
<span class="texto"><a href="../detect_esp.htm" class="link"><br>
|
||||||
<tr>
|
</a><span class="menu2"><span class="titulos1"> PRICES </span></span><br>
|
||||||
<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 & Contact</a> </td>
|
<br>
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
Accommodation prices<br>
|
||||||
</tr>
|
<br>
|
||||||
</table>
|
</span>
|
||||||
<span class="texto"><a href="../detect_esp.htm" class="link"><br>
|
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
||||||
</a><span class="menu2"><span class="titulos1"> PRICES </span></span><br>
|
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
||||||
<br>
|
<td width="26%" bgcolor="#DCDCB8"> </td>
|
||||||
Accommodation prices<br>
|
<td width="20%"><div align="center">
|
||||||
<br>
|
<p class="titulos3"><strong>Single</strong></p>
|
||||||
</span>
|
</div></td>
|
||||||
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
<td width="20%"><div align="center" class="titulos3">Double</div></td>
|
||||||
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
<td width="20%"><div align="center" class="texto">Added bed </div></td>
|
||||||
<td width="26%" bgcolor="#DCDCB8"> </td>
|
</tr>
|
||||||
<td width="20%">
|
<tr align="center" valign="middle">
|
||||||
<div align="center">
|
<td height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
|
||||||
<p class="titulos3"><strong>Single</strong></p>
|
<span class="texto">(1 October - 1 Juny)</span></td>
|
||||||
</div></td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">50 € </div></td>
|
||||||
<td width="20%">
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">
|
||||||
<div align="center" class="titulos3">Double</div></td>
|
<p class="texto">58 €</p>
|
||||||
<td width="20%">
|
</div></td>
|
||||||
<div align="center" class="texto">Added bed </div></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">16 €</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle">
|
<tr align="center" valign="middle">
|
||||||
<td height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
|
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
|
||||||
<span class="texto">(1 October - 1 Juny)</span></td>
|
<span class="texto">(1- Juny - 15 July | 15 - 30 September)</span></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">62 € </div></td>
|
||||||
<div align="center">50 € </div></td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">72 € </div></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">21 €</div></td>
|
||||||
<div align="center">
|
</tr>
|
||||||
<p class="texto">58 €</p>
|
<tr align="center" valign="middle">
|
||||||
</div></td>
|
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<span class="texto">(15 July - 15 September <br>
|
||||||
<div align="center" class="texto">16 €</div></td>
|
+ Easter <br>
|
||||||
</tr>
|
+ Christmas <br>
|
||||||
<tr align="center" valign="middle">
|
+ National holidays )</span></td>
|
||||||
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">76 € </div></td>
|
||||||
<span class="texto">(1- Juny - 15 July | 15 - 30 September)</span></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">88 € </div></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">25 €</div></td>
|
||||||
<div align="center" class="texto">62 € </div></td>
|
</tr>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">72 € </div></td>
|
<tr align="center" valign="middle">
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">>> Información y reservas</a></td>
|
||||||
<div align="center" class="texto">21 €</div></td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
<tr align="center" valign="middle">
|
<span class="texto"><br>
|
||||||
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
|
<strong class="titulos4">Prices full reservation</strong><br>
|
||||||
<span class="texto">(15 July - 15 September <br>
|
<br>
|
||||||
+ Easter <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>
|
||||||
+ Christmas <br>
|
<br>
|
||||||
+ National holidays )</span> </td>
|
</span>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
||||||
<div align="center">76 € </div></td>
|
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td width="21%"><div align="center">
|
||||||
<div align="center">88 € </div></td>
|
<p class="textoNegrita"> </p>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
</div></td>
|
||||||
<div align="center">25 €</div></td>
|
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
|
||||||
</tr>
|
(each night) </span></span></p></td>
|
||||||
<tr align="center" valign="middle">
|
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
|
||||||
<td height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">>> Información y reservas</a></td>
|
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
|
||||||
</tr>
|
(each person)</span></td>
|
||||||
</table>
|
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
|
||||||
<span class="texto"><br>
|
</span><span class="style16">(optional) </span></td>
|
||||||
<strong class="titulos4">Prices full reservation</strong><br>
|
</tr>
|
||||||
<br>
|
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
||||||
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>
|
<td align="left" valign="middle" class="textoNegrita"><span class="texto"><strong class="titulos3">Low season </strong><br>
|
||||||
<br>
|
(1 October - 30 June)</span></td>
|
||||||
</span><table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center"><strong>373</strong> <strong>€ </strong></div></td>
|
||||||
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">16 €</div></td>
|
||||||
<td width="21%">
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
<div align="center">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">10 €</div></td>
|
||||||
<p class="textoNegrita"> </p>
|
</tr>
|
||||||
</div></td>
|
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
||||||
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
|
<td align="left" valign="middle" class="titulos3"><span class="texto">Medium Season <br>
|
||||||
(each night) </span></span></p></td>
|
(1- 15 July | <br>
|
||||||
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
|
1 -30 September)</span></td>
|
||||||
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center"><strong>471</strong> <strong>€</strong></div></td>
|
||||||
(each person)</span></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">21 €</div></td>
|
||||||
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
</span><span class="style16">(optional) </span></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">10 €</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
||||||
<td align="left" valign="middle" class="textoNegrita"><span class="texto"><strong class="titulos3">Low season </strong><br>
|
<td align="left" valign="middle" class="menu2"><span class="texto">High season <br>
|
||||||
(1 October - 30 June)</span></td>
|
(16 July-31 August <br>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
+ Easter <br>
|
||||||
<div align="center"><strong>373</strong> <strong>€ </strong></div></td>
|
+ Christmas <br>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
+ National holidays) </span></td>
|
||||||
<div align="center">16 €</div></td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center"><strong>582</strong> <strong>€</strong></div></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<p class="texto">25 €</p>
|
||||||
<div align="center">10 €</div></td>
|
</div></td>
|
||||||
</tr>
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
<td height="89" bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">10 €</div></td>
|
||||||
<td align="left" valign="middle" class="titulos3"><span class="texto">Medium Season <br>
|
</tr>
|
||||||
(1- 15 July | <br>
|
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
||||||
1 -30 September)</span></td>
|
<td height="26" colspan="6" align="left" valign="middle" bgcolor="#FFFFFF"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">>> Information and reserves</a></span></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
</tr>
|
||||||
<div align="center"><strong>471</strong> <strong>€</strong> </div></td>
|
</table>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<span class="texto"><br>
|
||||||
<div align="center">21 €</div></td>
|
• In High and Medium seasons, minimun stances are 2 nights.<br>
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
• Hotel counts with 8 double-rooms. The full reservation can include the use of the hotel's kitchen at the prices above indicated. <br>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
• If you want to bring your pet, please ask previously. <br>
|
||||||
<div align="center">10 €</div></td>
|
<strong>(7% VAT not included)</strong></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
<tr>
|
||||||
<td align="left" valign="middle" class="menu2"><span class="texto">High season <br>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
(16 July-31 August <br>
|
<tr>
|
||||||
+ Easter <br>
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
+ Christmas <br>
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
+ National holidays) </span></td>
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
</tr>
|
||||||
<div align="center"><strong>582</strong> <strong>€</strong> </div></td>
|
</table></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
</tr>
|
||||||
<div align="center">
|
</table>
|
||||||
<p class="texto">25 €</p>
|
<script type="text/javascript">
|
||||||
</div></td>
|
<!--
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
swfobject.registerObject("FlashID");
|
||||||
<td height="89" bgcolor="#EEEEDB" class="texto">
|
//-->
|
||||||
<div align="center" class="texto">10 €</div></td>
|
</script>
|
||||||
</tr>
|
</body>
|
||||||
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
</html>
|
||||||
<td height="26" colspan="6" align="left" valign="middle" bgcolor="#FFFFFF"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">>> Information and reserves</a></span></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<span class="texto"><br>
|
|
||||||
• In High and Medium seasons, minimun stances are 2 nights.<br>
|
|
||||||
• Hotel counts with 8 double-rooms. The full reservation can include the use of the hotel's kitchen at the prices above indicated. <br>
|
|
||||||
• 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>
|
|
||||||
|
|||||||
@ -68,7 +68,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -92,21 +93,40 @@ body {
|
|||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><script type="text/javascript">
|
<td height="200">
|
||||||
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
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
</script>
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<noscript>
|
<param name="quality" value="high">
|
||||||
<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="wmode" value="transparent">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<param name="quality" value="high">
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
<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>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</object>
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
</noscript>
|
<!--[if !IE]>-->
|
||||||
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<param name="quality" value="high">
|
||||||
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<span class="menu2">Prices </span></td>
|
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<span class="menu2">Prices </span></td>
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -292,8 +312,19 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<strong>(7% VAT not included)</strong></span></td>
|
<strong>(7% VAT not included)</strong></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.style2 { font-size: 9px;
|
.style2 { font-size: 9px;
|
||||||
@ -50,8 +47,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
.style8 {color: #666666}
|
.style8 {color: #666666}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -70,239 +67,260 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="11" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="612" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<span class="menu2">Alojamiento</span> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</tr>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</table>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
<p><span class="titulos1">
|
<div>
|
||||||
<br>
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
ALOJAMIENTO <br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<br>
|
</div>
|
||||||
</span><span class="texto">•<strong> Ocho habitaciones</strong> dobles con baño y vistas;
|
<!--[if !IE]>-->
|
||||||
una de ellas apta para personas con <strong>movilidad reducida</strong>.<br>
|
</object>
|
||||||
• <strong>Televisión</strong>, servicio
|
<!--<![endif]-->
|
||||||
de té y secador en todas las habitaciones.<br>
|
</object>
|
||||||
• Un salón con chimenea, una sala de lectura y solana. <br>
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
• Servicio de guardería para <strong>animales</strong>
|
</td></tr>
|
||||||
(consulte previamente si desea traer a su mascota).<br>
|
<tr align="left" valign="top">
|
||||||
• <strong>Aparcamiento propio</strong>.</span><br>
|
<td>
|
||||||
<span class="titulos4"><span class="texto">• <strong>Conexión inalámbrica a internet.</strong></span></span></p>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<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>
|
<tr>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
<tr>
|
<td width="615" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<span class="menu2">Alojamiento</span> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
||||||
<td width="53%" align="left" valign="top">
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<p class="titulos4">Servicios
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
<span class="texto"> <br>
|
</tr>
|
||||||
<br>
|
</table>
|
||||||
• Disponemos de habitaciones especiales para personas
|
<p><span class="titulos1"> <br>
|
||||||
con problemas de movilidad.<br>
|
ALOJAMIENTO <br>
|
||||||
• Servicio de comedor: menú de temporada o
|
<br>
|
||||||
por encargo (* consultar tarifas), carta de
|
</span><span class="texto">•<strong> Ocho habitaciones</strong> dobles con baño y vistas;
|
||||||
picoteo y bolsa de picnic.<br>
|
una de ellas apta para personas con <strong>movilidad reducida</strong>.<br>
|
||||||
• Bar de uso exclusivo para nuestros huéspedes.<br>
|
• <strong>Televisión</strong>, servicio
|
||||||
• Consulte nuestras promociones. </span></td>
|
de té y secador en todas las habitaciones.<br>
|
||||||
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
• Un salón con chimenea, una sala de lectura y solana. <br>
|
||||||
<td width="46%" align="left" valign="top"><span class="titulos4">Actividades</span> <span class="texto"><br>
|
• Servicio de guardería para <strong>animales</strong> (consulte previamente si desea traer a su mascota).<br>
|
||||||
<br>
|
• <strong>Aparcamiento propio</strong>.</span><br>
|
||||||
Contactamos con diversas
|
<span class="titulos4"><span class="texto">• <strong>Conexión inalámbrica a internet.</strong></span></span></p>
|
||||||
empresas de la comarca (la oferta varía según
|
<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>
|
||||||
temporada) para organizar actividades:<br>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<br>
|
<tr>
|
||||||
•</span><span class="textoNegrita"> Deportivas</span><span class="texto">: <br>
|
<td width="53%" align="left" valign="top"><p class="titulos4">Servicios <span class="texto"> <br>
|
||||||
Quads, paseos a caballo, piragüismo, rafting,
|
<br>
|
||||||
ía, senderismo.<br>
|
• Disponemos de habitaciones especiales para personas
|
||||||
<br>
|
con problemas de movilidad.<br>
|
||||||
• </span><span class="textoNegrita">Culturales</span><span class="texto">: <br>
|
• Servicio de comedor: menú de temporada, carta de
|
||||||
Visitas a la Reserva
|
picoteo y bolsa de picnic.<br>
|
||||||
Natural de las Marismas de Santoña (observación
|
• Bar de uso exclusivo para nuestros huéspedes.<br>
|
||||||
de aves), arte rupestre, románico, observación
|
</span><span class="texto">• Aceptamos mascotas. Consultar previamente.</span>
|
||||||
de la naturaleza, paseos en barco por la Bahía
|
<br>
|
||||||
de Santoña, etc.<br>
|
<span class="texto">• Disponemos de barbacoa.<br>
|
||||||
</span>
|
</span><span class="texto">• Tarifas especiales para:<br>
|
||||||
</p></td>
|
- Ocupación completa de la Casona con posibilidad de uso de cocina.<br>
|
||||||
</tr>
|
- Empresas, grupos y eventos.</span><span class="texto"> </span></td>
|
||||||
</table>
|
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<span class="titulos4">Las habitaciones </span><br>
|
<td width="46%" align="left" valign="top"><span class="titulos4">Actividades</span> <span class="texto"><br>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
Contactamos con diversas
|
||||||
<tr>
|
empresas de la comarca (la oferta varía según
|
||||||
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. La vaca</strong></span><span class="texto"><strong><br>
|
temporada) para organizar actividades:<br>
|
||||||
</strong></span><strong><span class="texto"><br>
|
<br>
|
||||||
</span></strong><span class="texto">La habitación crema. Está orientada a tres fachadas: Este, Norte y Oeste. Ubicada en el ala anexa, y dispone de una gran terraza con salida directa al jardín. Esta habitación de estilo colonial resulta muy acogedora.<br>
|
•</span><span class="textoNegrita"> Deportivas</span><span class="texto">: <br>
|
||||||
<br>
|
Quads, paseos a caballo, piragüismo, rafting,
|
||||||
</span>
|
ía, senderismo.<br>
|
||||||
</div>
|
<br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
• </span><span class="textoNegrita">Culturales</span><span class="texto">: <br>
|
||||||
<tr>
|
Visitas a la Reserva
|
||||||
<td width="49%" align="center" valign="top" class="menu"> <img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
|
Natural de las Marismas de Santoña (observación
|
||||||
<td width="25%" align="center">
|
de aves), arte rupestre, románico, observación
|
||||||
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
|
de la naturaleza, paseos en barco por la Bahía
|
||||||
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
de Santoña, etc.<br>
|
||||||
</tr>
|
</span>
|
||||||
</table></td>
|
<p></p></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
</table>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<span class="titulos4">Las habitaciones </span><br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<td><div align="left" class="texto">
|
<tr>
|
||||||
<div align="justify"><strong class="titulos3"><br>
|
<td width="32%"><div align="justify"><span class="titulos3"><strong>1. La vaca</strong></span><span class="texto"><strong><br>
|
||||||
2. El Conejo</strong><br>
|
</strong></span><strong><span class="texto"><br>
|
||||||
<br>
|
</span></strong><span class="texto">La habitación crema. Está orientada a tres fachadas: Este, Norte y Oeste. Ubicada en el ala anexa, y dispone de una gran terraza con salida directa al jardín. Esta habitación de estilo colonial resulta muy acogedora.<br>
|
||||||
La habitación azul. Está orientada a dos fachadas, con dos grandes balcones de rejería. Al Este, se ve todo el valle y al Sur la singular montaña llamada el Castigo de la Rabia.<br>
|
<br>
|
||||||
<br>
|
</span></div>
|
||||||
</div>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<tr>
|
||||||
<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="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"> </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="50%" align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table></td>
|
||||||
</div> </td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><div align="left" class="texto">
|
||||||
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
<div align="justify"><strong class="titulos3"><br>
|
||||||
3. El Gallo</strong><br>
|
2. El Conejo</strong><br>
|
||||||
<br>
|
<br>
|
||||||
La habitación naranja. Orientada al Sur, posee dos amplios balcones de rejería que dan salida a una amplia terraza y está decorada en un precioso estilo colonial donde destaca el arco de entrada en ladrillo visto. <br>
|
La habitación azul. Está orientada a dos fachadas, con dos grandes balcones de rejería. Al Este, se ve todo el valle y al Sur la singular montaña llamada el Castigo de la Rabia.<br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</div>
|
||||||
</div>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<tr>
|
||||||
<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">
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
||||||
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
|
</tr>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210"></td>
|
</table>
|
||||||
</tr>
|
</div></td>
|
||||||
</table> </td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
|
3. El Gallo</strong><br>
|
||||||
4. El Gato</strong></span><strong><br>
|
<br>
|
||||||
</strong><br>
|
La habitación naranja. Orientada al Sur, posee dos amplios balcones de rejería que dan salida a una amplia terraza y está decorada en un precioso estilo colonial donde destaca el arco de entrada en ladrillo visto. <br>
|
||||||
La habitación lila. Está orientada a dos fachadas. Al Sur la vista del Castigo de la Rabia y al Oeste las montañas del Mullir y la finca. Tiene un baño con balcón de rejería y con una gran bañera redonda.<br>
|
<br>
|
||||||
<br>
|
</span></div>
|
||||||
</span>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
</div>
|
<tr>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<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>
|
||||||
<tr>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210"></td>
|
||||||
<td width="50%" align="center" valign="top" class="menu">
|
</tr>
|
||||||
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
|
</table></td>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210"></td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
</table> </td>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<td><div align="justify"><span class="texto"><span class="titulos3"><strong><br>
|
||||||
</tr>
|
4. El Gato</strong></span><strong><br>
|
||||||
<tr>
|
</strong><br>
|
||||||
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
La habitación lila. Está orientada a dos fachadas. Al Sur la vista del Castigo de la Rabia y al Oeste las montañas del Mullir y la finca. Tiene un baño con balcón de rejería y con una gran bañera redonda.<br>
|
||||||
5. El Chon</strong><br>
|
<br>
|
||||||
<br>
|
</span></div>
|
||||||
La habitació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ños. <br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<br>
|
<tr>
|
||||||
</span></font>
|
<td width="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</div>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210"></td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</tr>
|
||||||
<tr>
|
</table></td>
|
||||||
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></font></div></td>
|
</tr>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210"></td>
|
<tr>
|
||||||
</tr>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
</table> </td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
5. El Chon</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
La habitació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ños. <br>
|
||||||
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
<br>
|
||||||
6. El Petirrojo</strong><br>
|
</span></font></div>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
La habitación ocre. Está orientada a dos fachadas. Al Este, la fachada principal, posee una pequeña terraza plena de geranios con una inscripción en piedra del año de construcció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ña. <br>
|
<tr>
|
||||||
<br>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</span>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210"></td>
|
||||||
</div>
|
</tr>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</table></td>
|
||||||
<tr>
|
</tr>
|
||||||
<td width="50%" align="center" valign="top"> </div>
|
<tr>
|
||||||
<img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
</tr>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
<tr>
|
||||||
</tr>
|
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
</table> </td>
|
6. El Petirrojo</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
La habitación ocre. Está orientada a dos fachadas. Al Este, la fachada principal, posee una pequeña terraza plena de geranios con una inscripción en piedra del año de construcció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ña. <br>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<br>
|
||||||
</tr>
|
</span></div>
|
||||||
<tr>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
<tr>
|
||||||
7. La cabra</strong><br>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<br>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
||||||
La habitación blanca. Está orientada a la fachada Sur con vistas al Castigo de la Rabia y al jardín. Se ubica en la antigua zona de servidumbre de la casona. El baño tiene una ventanita que estuvo escondida hasta la rehabilitación y que apareció como un vestigio de una edificación anterior a 1871. <br>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
||||||
<br>
|
</tr>
|
||||||
</span>
|
</table></td>
|
||||||
</div>
|
</tr>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<tr>
|
||||||
<tr>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<td width="50%" align="center" valign="top">
|
</tr>
|
||||||
<img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></div></td>
|
<tr>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
7. La cabra</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
</table> </td>
|
La habitación blanca. Está orientada a la fachada Sur con vistas al Castigo de la Rabia y al jardín. Se ubica en la antigua zona de servidumbre de la casona. El baño tiene una ventanita que estuvo escondida hasta la rehabilitación y que apareció como un vestigio de una edificación anterior a 1871. <br>
|
||||||
</tr>
|
<br>
|
||||||
<tr>
|
</span></div>
|
||||||
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<td><div align="left" class="texto">
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<div align="justify"><strong class="titulos3"><br>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
||||||
8. El caballo</strong><br>
|
</tr>
|
||||||
<br>
|
</table></td>
|
||||||
La habitación amarilla. Esta habitación, situada en la planta baja, tiene un uso muy funcional pues está pensada para personas con movilidad reducida. Tiene un amplio ventanal de rejería que asoma justo a la cancela de la entrada principal en la fachada Este. La puerta de entrada da al vestíbulo y al salón con una rampa de acceso a éste último. El baño, muy amplio, está también preparado para esta función. <br>
|
</tr>
|
||||||
<br>
|
<tr>
|
||||||
</div>
|
<td align="left" valign="top"><img src="../img_nav/transp.gif" width="5" height="5"></td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
|
<td><div align="left" class="texto">
|
||||||
<td width="25%" align="center"> <div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
<div align="justify"><strong class="titulos3"><br>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
8. El caballo</strong><br>
|
||||||
</tr>
|
<br>
|
||||||
</table>
|
La habitación amarilla. Esta habitación, situada en la planta baja, tiene un uso muy funcional pues está pensada para personas con movilidad reducida. Tiene un amplio ventanal de rejería que asoma justo a la cancela de la entrada principal en la fachada Este. La puerta de entrada da al vestíbulo y al salón con una rampa de acceso a éste último. El baño, muy amplio, está también preparado para esta función. <br>
|
||||||
</div> </td>
|
<br>
|
||||||
</tr>
|
</div>
|
||||||
<tr>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<td></td>
|
<tr>
|
||||||
</tr>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"></td>
|
||||||
</table>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
||||||
<!-- InstanceEndEditable --></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></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
|
<table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.style2 { font-size: 9px;
|
.style2 { font-size: 9px;
|
||||||
@ -55,8 +52,8 @@ font-style:italic;
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -75,123 +72,143 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="11" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="612" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<span class="menu2">La comarca</span> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</tr>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</table>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
<span><a href="../detect_esp.htm"><br>
|
<div>
|
||||||
</a><span class="titulos1"> LA COMARCA: ASÓN-AGÜERA </span></span><br>
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
<br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
</div>
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="438" rowspan="2" valign="top" class="texto">
|
</object>
|
||||||
<p align="justify" class="texto"><em class="titulos3">La
|
<!--<![endif]-->
|
||||||
Villa de Palacios</em> está situada en la comarca
|
</object>
|
||||||
<strong>Asón-Agüera</strong>,<br/>entre la montaña y el mar. Muy próxima a las villas marineras de Laredo y Santoña, a media hora del Parque de la Naturaleza de Cabárceno, Santander y Bilbao.
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
<br/>
|
</td></tr>
|
||||||
<span class="credits"><a href="contacto_esp.htm" target="_blank" class="titulos3 style9"><span class="style15"> >> Ver SITUACIÓN de la CASONA</span></a><br>
|
<tr align="left" valign="top">
|
||||||
</span> <span class="titulos3 style18"><br>
|
<td>
|
||||||
</span><span class="titulos4">La montaña</span><br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
La comarca de <strong>Asón-Agüera</strong>
|
<tr>
|
||||||
es la más desconocida de Cantabria. La belleza
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
indiscutible de sus paisajes, sendas y rutas hace de
|
<td width="615" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<span class="menu2">La comarca</span> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
||||||
este lugar un paraje ideal para el descanso y el disfrute
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
de la naturaleza que alcanza su máximo esplendor
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
en el <strong>Parque Natural de Collados del Asón</strong> ( en
|
</tr>
|
||||||
Soba ), con excepcionales vistas del valle y nacimiento
|
</table>
|
||||||
del río que le da nombre en una espectacular
|
<span><a href="../detect_esp.htm"><br>
|
||||||
cascada de 50 metros. El mirador y nacimiento del río
|
</a><span class="titulos1"> LA COMARCA: ASÓN-AGÜERA </span></span><br>
|
||||||
Gándara, espesos bosques, numerosas rutas de
|
<br>
|
||||||
gran belleza, hermosas aldeas rústicas, etc.<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<br>
|
<tr>
|
||||||
<span class="titulos4">El mar y las playas</span><br>
|
<td width="438" rowspan="2" valign="top" class="texto"><p align="justify" class="texto"><em class="titulos3">La
|
||||||
La villa marinera de Laredo con su gran playa se encuentra a 15 minutos de nuestra casona y sólo a 3 Km comienza la <strong>Reserva Natural de las Marismas de Santoña, Victoria y Joyel</strong>. Este es el mayor humedal del norte de España y de gran interés para los amantes de las aves acuáticas ya que en este enclave se han podido observar hasta la fecha 121 especies.<br/>
|
Villa de Palacios</em> está situada en la comarca <strong>Asón-Agüera</strong>,<br/>
|
||||||
<br/>
|
entre la montaña y el mar. Muy próxima a las villas marineras de Laredo y Santoña, a media hora del Parque de la Naturaleza de Cabárceno, Santander y Bilbao. <br/>
|
||||||
<span class="titulos4">Cuevas y arte rupestre</span><br>
|
<span class="credits"><a href="contacto_esp.htm" target="_blank" class="titulos3 style9"><span class="style15"> >> Ver SITUACIÓN de la CASONA</span></a><br>
|
||||||
Nuestra comarca posee una gran concentración de cuevas por lo que es visitada por espeleólogos del mundo entero.
|
</span> <span class="titulos3 style18"><br>
|
||||||
Existen otras cuevas con vistosas formaciones geológicas y también con pinturas rupestres las cuales están accesibles al público como Covalanas, Cullalvera, Coventosa, etc.
|
</span><span class="titulos4">La montaña</span><br>
|
||||||
No obstante las famosas Cuevas de Altamira y El Soplao se encuentran a menos de una hora de trayecto desde nuestro hotel.
|
La comarca de <strong>Asón-Agüera</strong> es la más desconocida de Cantabria. La belleza
|
||||||
<br>
|
indiscutible de sus paisajes, sendas y rutas hace de
|
||||||
<br>
|
este lugar un paraje ideal para el descanso y el disfrute
|
||||||
<span class="titulos4">Ciudades</span><br>
|
de la naturaleza que alcanza su máximo esplendor
|
||||||
Nuestra Casona se encuentra equidistante de Santander
|
en el <strong>Parque Natural de Collados del Asón</strong> ( en
|
||||||
y Bilbao. En unos 45 minutos estarás en el centro
|
Soba ), con excepcionales vistas del valle y nacimiento
|
||||||
de cualquiera de estas ciudades y podrás disfrutar
|
del río que le da nombre en una espectacular
|
||||||
de la gran oferta cultural que ambas ofrecen.<br>
|
cascada de 50 metros. El mirador y nacimiento del río
|
||||||
<br>
|
Gándara, espesos bosques, numerosas rutas de
|
||||||
En <strong>Bilbao</strong> cuentas con el emblemático <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="titulos3">Museo Guggenheim</a> y también con el muy interesante Museo
|
gran belleza, hermosas aldeas rústicas, etc.<br>
|
||||||
de Bellas Artes. Pero no es para olvidarse del Museo
|
<br>
|
||||||
Arqueológico, Etnográfico e Histórico
|
<span class="titulos4">El mar y las playas</span><br>
|
||||||
o del Museo Diocesano.<br>
|
La villa marinera de Laredo con su gran playa se encuentra a 15 minutos de nuestra casona y sólo a 3 Km comienza la <strong>Reserva Natural de las Marismas de Santoña, Victoria y Joyel</strong>. Este es el mayor humedal del norte de España y de gran interés para los amantes de las aves acuáticas ya que en este enclave se han podido observar hasta la fecha 121 especies.<br/>
|
||||||
<p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
|
<br/>
|
||||||
<span class="credits"><strong>Museo Guggenheim-Bilbao </strong></span><span class="titulos2"></span></p>
|
<span class="titulos4">Cuevas y arte rupestre</span><br>
|
||||||
<p>En <strong>Santander</strong> está el Museo de
|
Nuestra comarca posee una gran concentración de cuevas por lo que es visitada por espeleólogos del mundo entero.
|
||||||
Prehistoria y Arqueología y el Museo Marítimo
|
Existen otras cuevas con vistosas formaciones geológicas y también con pinturas rupestres las cuales están accesibles al público como Covalanas, Cullalvera, Coventosa, etc.
|
||||||
del Cantábrico, además de el Museo de
|
No obstante las famosas Cuevas de Altamira y El Soplao se encuentran a menos de una hora de trayecto desde nuestro hotel. <br>
|
||||||
Bellas Artes. Tambien puedes visitar el Palacio de la Magdalena y el Sardinero.</p>
|
<br>
|
||||||
<p><br>
|
<span class="titulos4">Ciudades</span><br>
|
||||||
<img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
Nuestra Casona se encuentra equidistante de Santander
|
||||||
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
y Bilbao. En unos 45 minutos estarás en el centro
|
||||||
<td width="10" rowspan="2" valign="top"> <img src="../img_nav/transp.gif" width="10" height="10"></td>
|
de cualquiera de estas ciudades y podrás disfrutar
|
||||||
<td width="220" valign="top">
|
de la gran oferta cultural que ambas ofrecen.<br>
|
||||||
<div align="right">
|
<br>
|
||||||
<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>
|
En <strong>Bilbao</strong> cuentas con el emblemático <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="titulos3">Museo Guggenheim</a> y también con el muy interesante Museo
|
||||||
a la izquierda.<br>
|
de Bellas Artes. Pero no es para olvidarse del Museo
|
||||||
<br>
|
Arqueológico, Etnográfico e Histórico
|
||||||
</span>
|
o del Museo Diocesano.<br>
|
||||||
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
<p align="justify" class="menu"><img src="../img_nav/guggenheim.jpg" width="393" height="164"><br>
|
||||||
Una zona ideal para el senderismo.</span><br><br/>
|
<span class="credits"><strong>Museo Guggenheim-Bilbao </strong></span><span class="titulos2"></span></p>
|
||||||
|
<p>En <strong>Santander</strong> está el Museo de
|
||||||
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
Prehistoria y Arqueología y el Museo Marítimo
|
||||||
<span class="credits"><strong>Laredo</strong> (Santoña al fondo).<br>
|
del Cantábrico, además de el Museo de
|
||||||
<br></span>
|
Bellas Artes. Tambien puedes visitar el Palacio de la Magdalena y el Sardinero.</p>
|
||||||
<img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
<p><br>
|
||||||
<span class="credits"><strong>Covalanas</strong><br>
|
<img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
||||||
<br>
|
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
||||||
</span>
|
<td width="10" rowspan="2" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
<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>
|
||||||
Puerto pesquero de <strong>Colindres</strong>.<br>
|
a la izquierda.<br>
|
||||||
</span><br>
|
<br>
|
||||||
</div> </td>
|
</span> <img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
</tr>
|
Una zona ideal para el senderismo.</span><br>
|
||||||
<tr>
|
<br/>
|
||||||
<td valign="top">
|
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
||||||
<div align="right">
|
<span class="credits"><strong>Laredo</strong> (Santoña al fondo).<br>
|
||||||
<p><span class="titulos3"><strong>A</strong>lgunas
|
<br>
|
||||||
direcciones de interés</span><br>
|
</span> <img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
||||||
</span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<br>
|
<span class="credits"><strong>Covalanas</strong><br>
|
||||||
</a><a href="http://www.altoason.com" target="_blank" class="textoNegrita">www.altoason.com<br>
|
<br>
|
||||||
</a><a href="http://www.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
|
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
|
Puerto pesquero de <strong>Colindres</strong>.<br>
|
||||||
www.cantabria.com</a><br>
|
</span><br>
|
||||||
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<br>
|
</div></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td valign="top"><div align="right">
|
||||||
|
<p><span class="titulos3"><strong>A</strong>lgunas
|
||||||
|
direcciones de interés</span><br>
|
||||||
|
<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>
|
</a><a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita">www.guggenheim-bilbao.es</a></p>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table></td>
|
||||||
<!-- InstanceEndEditable --></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
||||||
@ -57,8 +54,8 @@ function MM_openBrWindow(theURL,winName,features) { //v2.0
|
|||||||
.style8 {color: #666666}
|
.style8 {color: #666666}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -77,83 +74,108 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr bgcolor="#CCCC99">
|
<!--[if !IE]>-->
|
||||||
<td width="5" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="619" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<span class="menu2">Reserva y Contacto </span>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<param name="wmode" value="transparent">
|
||||||
</tr>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</table>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
</a><span class="titulos1">
|
<div>
|
||||||
RESERVAS Y CONTACTO </span></span><br>
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
<br>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<table width="100%" border="0">
|
</div>
|
||||||
<tr valign="top">
|
<!--[if !IE]>-->
|
||||||
<td width="42%" class="texto"><p>Para
|
</object>
|
||||||
realizar una reserva o solicitar más información,
|
<!--<![endif]-->
|
||||||
<br>
|
</object>
|
||||||
contacte con nosotros:<br>
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
<span><br>
|
</td></tr>
|
||||||
<a href="mailto:info@villadepalacios.com" class="titulos3">
|
<tr align="left" valign="top">
|
||||||
info@villadepalacios.com</a><br>
|
<td>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
</span><span class="titulos3">Barrio Palacios 150<br>
|
<tr bgcolor="#CCCC99">
|
||||||
San Miguel de Aras. Voto <br>
|
<td width="5" bgcolor="#333333"> </td>
|
||||||
39766 - Cantabria<br>
|
<td width="619" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<span class="menu2">Reserva y Contacto </span>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
||||||
<br>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
Tel. 942 679 150 <br>
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
Mov. 627 030 030 <br>
|
</tr>
|
||||||
</span>
|
</table>
|
||||||
<br/>
|
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
||||||
Lea nuestra <a href="#" class="titulos3" onClick="MM_openBrWindow('politica-cancelacion.htm','Politica','toolbar=yes,menubar=yes,resizable=yes,width=520,height=550')">
|
</a><span class="titulos1"> RESERVAS Y CONTACTO </span></span><br>
|
||||||
política de reservas y cancelación</a>.<br/><br/>
|
<br>
|
||||||
|
<table width="100%" border="0">
|
||||||
|
<tr valign="top">
|
||||||
</p>
|
<td width="42%" class="texto"><p>Para
|
||||||
<p align="left"><strong>Para
|
realizar una reserva o solicitar más información, <br>
|
||||||
llegar:</strong><br>
|
contacte con nosotros:<br>
|
||||||
Salida en Km 177 (Treto-Cicero) <br>
|
<span><br>
|
||||||
de la autovía
|
<a href="mailto:info@villadepalacios.com" class="titulos3"> info@villadepalacios.com</a><br>
|
||||||
Santander-Bilbao. <br>
|
<br>
|
||||||
Ir dirección Treto y enseguida van apareciendo
|
</span><span class="titulos3">Barrio Palacios 150<br>
|
||||||
indicaciones hacia <br>
|
San Miguel de Aras. Voto <br>
|
||||||
SAN MIGUEL DE ARAS. <br>
|
39766 - Cantabria<br>
|
||||||
Hay unos 9
|
<br>
|
||||||
Km. Desde la autovía hasta “La Villa
|
Tel. 942 679 150<br>
|
||||||
de Palacios”.<span class="titulos2"><br>
|
Fax. 942 679 241 </span><span class="titulos3"><br>
|
||||||
</span></p>
|
Mov. 627 030 030 <br>
|
||||||
</blockquote></td>
|
</span> <br/>
|
||||||
<td height="365" colspan="2"> <div align="center">
|
Lea nuestra <a href="#" class="titulos3" onClick="MM_openBrWindow('politica-cancelacion.htm','Politica','toolbar=yes,menubar=yes,resizable=yes,width=520,height=550')"> política de reservas y cancelación</a>.<br/>
|
||||||
<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>
|
<br/>
|
||||||
<span class="titulos3">A 45 minutos de Bilbao y de
|
</p>
|
||||||
Santander</span></a><span class="titulos3">. </span><span class="texto"><br>
|
<p align="left"><strong>Para
|
||||||
</span><span class="credits">Pulse en la imagen para ampliar e imprimir.</span></p>
|
llegar:</strong><br>
|
||||||
</div></td>
|
Salida en Km 177 (Treto-Cicero) <br>
|
||||||
</tr>
|
de la autovía
|
||||||
</table>
|
Santander-Bilbao. <br>
|
||||||
<p align="center"><span class="titulos4">Coordenadas G.P.S.</span><br>
|
Ir dirección Treto y enseguida van apareciendo
|
||||||
<span class="textoNegrita"><strong>Longitud</strong></span><strong>: </strong>W03 grados 30 minutos 57 segundos<BR>
|
indicaciones hacia <br>
|
||||||
<strong>Latitud: </strong>N43 grados 19 minutos 52 segundos</p>
|
SAN MIGUEL DE ARAS. <br>
|
||||||
<!-- InstanceEndEditable --></td>
|
Hay unos 9
|
||||||
|
Km. Desde la autovía hasta “La Villa
|
||||||
|
de Palacios”.<span class="titulos2"><br>
|
||||||
|
</span></p></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 30 minutos 57 segundos<BR>
|
||||||
|
<strong>Latitud: </strong>N43 grados 19 minutos 52 segundos</p></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -1,125 +1,138 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
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. ">
|
<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.-->
|
<!-- 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,
|
<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,
|
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,
|
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,
|
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">
|
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,
|
<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,
|
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,
|
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,
|
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">
|
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.
|
<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 ">
|
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.
|
<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 ">
|
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
||||||
<META NAME="Language" content="español">
|
<META NAME="Language" content="español">
|
||||||
<META NAME="Revisit" content="7 days">
|
<META NAME="Revisit" content="7 days">
|
||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function MM_preloadImages() { //v3.0
|
function MM_preloadImages() { //v3.0
|
||||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
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++)
|
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];}}
|
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
|
|
||||||
function MM_reloadPage(init) { //reloads the window if Nav4 resized
|
function MM_reloadPage(init) { //reloads the window if Nav4 resized
|
||||||
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
|
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
|
||||||
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
|
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
|
||||||
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
|
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
|
||||||
}
|
}
|
||||||
MM_reloadPage(true);
|
MM_reloadPage(true);
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<style type="text/css">
|
<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;}
|
.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;}
|
.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;}
|
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
|
||||||
body {
|
body {
|
||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0" bgcolor="#999999">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="right" valign="top" height="487">
|
<td align="right" valign="top" height="487">
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
<table width="100%" border="0" cellspacing="0" cellpadding="5" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
<table width="619" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td width="619" valign="bottom" bgcolor="#333333"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<td class="menu" height="12"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="23" rowspan="3"> </td>
|
<td width="23" rowspan="3"> </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="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"> </td>
|
<td width="6" rowspan="3"> </td>
|
||||||
<td width="280" valign="top"><br> <img src="../img_nav/nueva%20galeria/INTERIORES2.JPG" width="280" height="210" border="0"></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"> </td>
|
<td width="12" rowspan="3" valign="top"> </td>
|
||||||
<td width="12" rowspan="3" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA5.JPG" width="280" height="373" border="0"></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>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"> </td>
|
<td valign="top"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
|
<td valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA1.JPG" width="280" height="210" border="0"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DCDCB8">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="23" rowspan="3"> </td>
|
<td width="23" rowspan="3"> </td>
|
||||||
<td width="280" valign="middle"><img src="../img_nav/nueva%20galeria/ENTORNO.JPG" width="280" height="210" border="0"></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"> </td>
|
<td width="6" rowspan="3"> </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="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"> </td>
|
<td width="12" rowspan="3" valign="top"> </td>
|
||||||
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
|
<td width="12" valign="middle"><img src="../img_nav/nueva%20galeria/LA%20CASONA8.JPG" width="280" height="210" border="0"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="280" valign="middle"> </td>
|
<td width="280" valign="middle"> </td>
|
||||||
<td width="12" valign="middle"> </td>
|
<td width="12" valign="middle"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<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="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>
|
<td width="12" valign="top"><img src="../img_nav/nueva%20galeria/DSC08342.JPG" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </td>
|
</table> </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
</tr>
|
<table width="100%" border="0">
|
||||||
</table>
|
<tr>
|
||||||
</td>
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
</tr>
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
</table>
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
</td>
|
||||||
</body>
|
</tr>
|
||||||
</html>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,7 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casonal rural :: Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +38,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.style4 {font-style: italic}
|
.style4 {font-style: italic}
|
||||||
@ -61,8 +58,8 @@ function MM_openBrWindow(theURL,winName,features) { //v2.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -81,124 +78,153 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</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="quality" value="high">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="wmode" value="transparent">
|
||||||
<param name="quality" value="high">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<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>
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
</object></noscript>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
<tr>
|
<!--[if !IE]>-->
|
||||||
<td width="11" bgcolor="#333333"> </td>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
<td width="612" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<span class="menu2">Fotografías </span>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
<!--<![endif]-->
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<param name="quality" value="high">
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<param name="wmode" value="transparent">
|
||||||
</tr>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
</table>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<span class="titulos1"><br>
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
GALERÍA DE IMÁGENES </span></span><span class="texto"><br>
|
<div>
|
||||||
<br>
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
Aquí tiene algunas imágenes de la Casona y sus alrededores. Puede ver fotografías de las habitaciones en la sección </span><a href="alojamiento_esp.htm" class="titulos3">Alojamiento.</a>
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
<br>
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
|
<tr>
|
||||||
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
|
<td width="615" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<span class="menu2">Fotografías </span>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
||||||
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<span class="titulos1"><br>
|
||||||
|
GALERÍA DE IMÁGENES </span><span class="texto"><br>
|
||||||
|
<br>
|
||||||
|
Aquí tiene algunas imágenes de la Casona y sus alrededores. Puede ver fotografías de las habitaciones en la sección </span><a href="alojamiento_esp.htm" class="titulos3">Alojamiento.</a> <br>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
|
<td width="60%" height="248" valign="top" class="texto"><table width="100%" border="0">
|
||||||
<tr>
|
<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="90%" valign="top"><span class="titulos3"><strong class="titulos4">Interiores</strong></span> <span class="textoNegrita">Los espacios comunes</span></td>
|
||||||
<td width="10%" valign="bottom">
|
<td width="10%" valign="bottom"> </td>
|
||||||
<div align="right"></div></td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES1.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES3.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES5.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/INTERIORES6.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table> <br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="93%" valign="top"><span class="titulos4">La casona </span><span class="textoNegrita">Un ambiente sosegado y detallista</span></td>
|
<td width="93%" valign="top"><span class="titulos4">La casona </span><span class="textoNegrita">Un ambiente sosegado y detallista</span></td>
|
||||||
<td width="7%" valign="bottom">
|
<td width="7%" valign="bottom"></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Presentacion.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Presentacion.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20CASONA12.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Cancela.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Cancela.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/DSC08236.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table> <br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="93%" height="25" valign="top"><span class="titulos4">La finca</span> <span class="textoNegrita">8.000
|
<td width="93%" height="25" valign="top"><span class="titulos4">La finca</span> <span class="textoNegrita">8.000
|
||||||
metros cuadrados para disfrutar</span></td>
|
metros cuadrados para disfrutar</span></td>
|
||||||
<td width="7%" valign="bottom">
|
<td width="7%" valign="bottom"></td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Finca.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/Finca.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA5.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</table>
|
<br>
|
||||||
<br>
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<tr>
|
||||||
<tr>
|
<td width="40"> </td>
|
||||||
<td width="40"> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
|
||||||
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA3.JPG" width="280" height="210" border="0"></td>
|
<td> </td>
|
||||||
<td> </td>
|
<td width="280" valign="top"><img src="../img_nav/nueva%20galeria/LA%20FINCA1.JPG" width="280" height="210" border="0"></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"> </td>
|
||||||
<td width="40" valign="top"> </td>
|
</tr>
|
||||||
</tr>
|
</table>
|
||||||
</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í </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ás imágenes</span></a><span class="menu2"><br>
|
||||||
<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í </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ás imágenes</span></a><span class="menu2"><br>
|
<br>
|
||||||
<br>
|
</span></p></td>
|
||||||
</span></p></td>
|
</tr>
|
||||||
</tr>
|
</table></td>
|
||||||
</table>
|
|
||||||
<!-- InstanceEndEditable --></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
188
esp/home_esp.htm
188
esp/home_esp.htm
@ -1,4 +1,4 @@
|
|||||||
<html><!-- InstanceBegin template="/Templates/cabecera_esp.dwt" codeOutsideHTMLIsLocked="false" -->
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
content="Villa de Palacios ::: Casona Rural en el valle de Aras ::: Cantabria">
|
||||||
@ -23,9 +23,8 @@ ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
|||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
<!-- InstanceBeginEditable name="doctitle" -->
|
|
||||||
<title>Hotel con encanto ::: Turismo rural en Cantabria</title>
|
<title>Hotel con encanto ::: Turismo rural en Cantabria</title>
|
||||||
<!-- InstanceEndEditable -->
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="../css.css" type="text/css">
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
@ -40,7 +39,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<!-- InstanceBeginEditable name="head" -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
||||||
@ -79,8 +77,6 @@ function MM_showHideLayers() { //v6.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -99,96 +95,118 @@ body {
|
|||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style>
|
||||||
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><!-- InstanceBeginEditable name="EditRegion3" -->
|
<td height="200">
|
||||||
<script type="text/javascript">
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
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
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
</script>
|
<param name="quality" value="high">
|
||||||
<noscript>
|
<param name="wmode" value="transparent">
|
||||||
<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="swfversion" value="6.0.65.0">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
<param name="quality" value="high">
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
<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>
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
</object>
|
<!--[if !IE]>-->
|
||||||
</noscript>
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<param name="quality" value="high">
|
||||||
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="9" bgcolor="#333333"> </td>
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
<td width="574" align="left" bgcolor="#333333" class="menu"><span class="menu2">Presentación </span> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a>·<a href="cantabria_esp.htm" class="menu">La comarca</a>·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
<td width="574" align="left" bgcolor="#333333" class="menu"><span class="menu2">Presentación </span> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a>·<a href="cantabria_esp.htm" class="menu">La comarca</a>·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<a href="tarifas_esp.htm" class="menu">Tarifas </a></td>
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"> </td>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<span class="titulos3 style13"><br>
|
||||||
<span class="titulos3 style13"><br>
|
</span>
|
||||||
</span>
|
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="33%" valign="bottom"><span><span class="titulos1"> PRESENTACIÓN </span></span>
|
<td width="33%" valign="bottom"><span><span class="titulos1"> PRESENTACIÓN </span></span> <span class="titulos3 style13"></span></td>
|
||||||
<span class="titulos3 style13"></span></td>
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="48%" valign="top" class="texto"><div align="justify"><strong class="titulos3">La
|
<td width="48%" valign="top" class="texto"><div align="justify"><strong class="titulos3">La
|
||||||
Villa de Palacios</strong>, una preciosa casa del siglo
|
Villa de Palacios</strong>, una preciosa casa del siglo
|
||||||
XIX completamente reformada, es el destino ideal para una estancia de tiempo
|
XIX completamente reformada, es el destino ideal para una estancia de tiempo
|
||||||
libre. Está situada en el privilegiado enclave
|
libre. Está situada en el privilegiado enclave
|
||||||
de la Junta de Voto, rodeada de montañas y frondosos
|
de la Junta de Voto, rodeada de montañ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>
|
bosques.<span class="credits"> <a href="../BK%20home%20ofertas/contacto_esp.htm" target="_blank" class="titulos3 style9"> <span class="style14">o<br>
|
||||||
<br>
|
<br>
|
||||||
oooooooooooooooo</span><span class="style15">>> Ver SITUACIÓN de la CASONA</span></a><br>
|
oooooooooooooooo</span><span class="style15">>> Ver SITUACIÓN de la CASONA</span></a><br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</span> Una finca de <strong>8.000 m²</strong>,
|
||||||
Una finca de <strong>8.000 m²</strong>,
|
con nogales, castaños, encinas y avellanos enmarca
|
||||||
con nogales, castaños, encinas y avellanos enmarca
|
el <strong>hotel-casona</strong> La Villa de Palacios,
|
||||||
el <strong>hotel-casona</strong> La Villa de Palacios,
|
ofreciendo al visitante un espacio en consonancia con
|
||||||
ofreciendo al visitante un espacio en consonancia con
|
el bello entorno natural del Valle de Aras.<br>
|
||||||
el bello entorno natural del Valle de Aras.<br>
|
<span class="credits"><br>
|
||||||
<span class="credits"><br>
|
</span> Haz una escapada y disfruta
|
||||||
</span>
|
del mejor <strong>turismo rural</strong> en un sitio con excelentes comunicaciones y posibilidades de ocio: a 15 minutos de <strong>Laredo
|
||||||
Haz una escapada y disfruta
|
y sus playas</strong> y a 40 minutos de<strong> Santander </strong>y de<strong> Bilbao</strong>. <br>
|
||||||
del mejor <strong>turismo rural</strong>
|
<br>
|
||||||
en un sitio con excelentes comunicaciones y posibilidades de ocio: a 15 minutos de <strong>Laredo
|
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
|
||||||
y sus playas</strong> y a 40 minutos de<strong> Santander </strong>y de<strong> Bilbao</strong>. <br>
|
de Santoña, o practica el <strong>excursionismo</strong>, la <strong>espeleología</strong> y los <strong>deportes de aventura</strong> en las montañas de
|
||||||
<br>
|
la zona.<br>
|
||||||
Visita el conocido<a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="texto"><strong>
|
</div></td>
|
||||||
<span class="textoNegrita"><u>Museo Guggenheim</u></span></strong></a>, conoce la Reserva Natural de las Marismas
|
<td width="52%" height="289" valign="middle"><div align="right">
|
||||||
de Santoña, o practica el <strong>excursionismo</strong>, la <strong>espeleología</strong>
|
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
||||||
y los <strong>deportes de aventura</strong> en las montañas de
|
<span class="titulos4"><br>
|
||||||
la zona.<br>
|
Bienvenido a La Villa de Palacios ***</span></p>
|
||||||
</div></td>
|
<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>
|
||||||
<td width="52%" height="289" valign="middle"> <div align="right">
|
</p>
|
||||||
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
</div></td>
|
||||||
<span class="titulos4"><br>
|
</tr>
|
||||||
Bienvenido a La Villa de Palacios ***</span></p>
|
<tr align="left" valign="top">
|
||||||
<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>
|
<td height="108" colspan="2" class="texto"><br>
|
||||||
</p>
|
<br>
|
||||||
</div></td>
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
</tr>
|
<tr>
|
||||||
<tr align="left" valign="top">
|
<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 height="108" colspan="2" class="texto"> <br>
|
<td width="65%" valign="top" class="texto">La Villa de Palacios ostenta la categorí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>
|
||||||
<br>
|
www.calidadcantabria.com</a></td>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
</tr>
|
||||||
<tr>
|
</table></td>
|
||||||
<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>
|
</tr>
|
||||||
<td width="65%" valign="top" class="texto">La Villa de Palacios ostenta la categorí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>
|
</table></td>
|
||||||
www.calidadcantabria.com</a> </td>
|
|
||||||
</tr>
|
|
||||||
</table></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<!-- InstanceEndEditable --></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
|
<table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
193
esp/ofertas.htm
193
esp/ofertas.htm
@ -1,94 +1,99 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>:::OFERTAS:::</title>
|
<title>:::OFERTAS:::</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link href="../css.css" rel="stylesheet" type="text/css">
|
<link href="../css.css" rel="stylesheet" type="text/css">
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
body {
|
body {
|
||||||
background-color: #CCCC99;
|
background-color: #CCCC99;
|
||||||
}
|
}
|
||||||
.style1 {font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #FFFFFF; text-decoration: none; font-family: Verdana;}
|
.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;}
|
.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;}
|
.style3 {font-size: 9px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Arial;}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
|
||||||
<tr align="center" valign="middle" bgcolor="#FFFFFF">
|
<tr align="center" valign="middle" bgcolor="#FFFFFF">
|
||||||
<td height="20" colspan="2">
|
<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
|
<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>
|
Julio<font size="4"><img src="../img_nav/transp.gif" width="10" height="30" border="0"></font></span></font></div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="texto"><div align="left"><br>
|
<td colspan="2" class="texto"><div align="left"><br>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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">€</font></strong></font></font></span> <span class="puntitos"><strong><br>
|
<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">€</font></strong></font></font></span> <span class="puntitos"><strong><br>
|
||||||
por día </strong></span></td>
|
por día </strong></span></td>
|
||||||
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoció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>
|
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoció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ón doble con desayuno para dos personas durante la semana. </span><span class="titulos2"><strong class="titulos2">*Válida hasta el 31 de Julio</strong>*</span><span class="textoNegrita"><br>
|
- Una semana en habitación doble con desayuno para dos personas durante la semana. </span><span class="titulos2"><strong class="titulos2">*Válida hasta el 31 de Julio</strong>*</span><span class="textoNegrita"><br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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
|
<td width="76" align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">75
|
||||||
€</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong>
|
€</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></font></span></font></font><span class="puntitos"><strong><br>
|
||||||
por persona</strong></span></td>
|
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ón COUPLE </font></strong></font></font></span><br> <span class="textoNegrita">Incluye:<br>
|
<td width="424" valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoción COUPLE </font></strong></font></font></span><br> <span class="textoNegrita">Incluye:<br>
|
||||||
- Detalle de bienvenida<br>
|
- Detalle de bienvenida<br>
|
||||||
- 2 noches de hotel<br>
|
- 2 noches de hotel<br>
|
||||||
- 2 desayunos<br>
|
- 2 desayunos<br>
|
||||||
- 1 cena romántica <br>
|
- 1 cena romántica <br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">80
|
||||||
€</font></strong></font></font></span><font size="3"><font size="2"><span class="credits"><font size="3"><strong>
|
€</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></font></span></font></font><span class="puntitos"><strong><br>
|
||||||
por persona</strong></span></td>
|
por persona</strong></span></td>
|
||||||
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoción SPORT </font></strong></font></font></span><br>
|
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Promoción SPORT </font></strong></font></font></span><br>
|
||||||
<span class="textoNegrita">Incluye:<br>
|
<span class="textoNegrita">Incluye:<br>
|
||||||
- 2 noches de hotel<br>
|
- 2 noches de hotel<br>
|
||||||
- 2 desayunos<br>
|
- 2 desayunos<br>
|
||||||
- 1 ruta en QUAD biplaza por el Valle de Aras o práctica de espeleología (distintos niveles). <br>
|
- 1 ruta en QUAD biplaza por el Valle de Aras o práctica de espeleología (distintos niveles). <br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 €</font></strong></font></font></span><br>
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">136 €</font></strong></font></font></span><br>
|
||||||
<span class="puntitos"><strong>en total</strong></span> <span class="puntitos"><strong><br>
|
<span class="puntitos"><strong>en total</strong></span> <span class="puntitos"><strong><br>
|
||||||
</strong></span></td>
|
</strong></span></td>
|
||||||
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Fin
|
<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>
|
de semana FAMILY 4</font></strong></font></font></span><br>
|
||||||
<span class="textoNegrita">oferta
|
<span class="textoNegrita">oferta
|
||||||
A (4 personas):<br>
|
A (4 personas):<br>
|
||||||
- 2 noches en habitación doble<br>
|
- 2 noches en habitación doble<br>
|
||||||
- 2 camas supletorias<br>
|
- 2 camas supletorias<br>
|
||||||
- 8 desayunos<br>
|
- 8 desayunos<br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 €<br>
|
<td align="center" valign="middle" class="texto"><span class="textoNegrita"><font size="3"><font size="2"><strong><font size="3">204 €<br>
|
||||||
</font></strong></font></font></span><span class="puntitos"><strong>en total<br>
|
</font></strong></font></font></span><span class="puntitos"><strong>en total<br>
|
||||||
</strong></span></td>
|
</strong></span></td>
|
||||||
<td valign="top" class="texto"><span class="credits"><font size="3"><font size="2"><strong><font size="3">Fin
|
<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>
|
de semana FAMILY 6</font></strong></font></font></span><br>
|
||||||
<span class="textoNegrita">oferta B (6 personas):<br>
|
<span class="textoNegrita">oferta B (6 personas):<br>
|
||||||
- 2 noches en 2 habitaciones dobles<br>
|
- 2 noches en 2 habitaciones dobles<br>
|
||||||
- 2 camas supletorias<br>
|
- 2 camas supletorias<br>
|
||||||
- 12 desayunos<br>
|
- 12 desayunos<br>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="commentaires"><div align="center"><span class="commentaires"><br>
|
<td colspan="2" class="commentaires"><div align="center"><span class="commentaires"><br>
|
||||||
</span><span class="style3">Ofertas válidas hasta el 29 de Julio. 7% de I.V.A no incluido. </span><span class="commentaires"><br>
|
</span><span class="style3">Ofertas válidas hasta el 29 de Julio. 7% de I.V.A no incluido. </span><span class="commentaires"><br>
|
||||||
<br>
|
<br>
|
||||||
</span></div></td>
|
</span></div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
<script type="text/javascript">
|
||||||
</html>
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -88,5 +88,10 @@ de antelación a la fecha
|
|||||||
</ul></td>
|
</ul></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -1,38 +1,43 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>:::OFERTAS:::</title>
|
<title>:::OFERTAS:::</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link href="../css.css" rel="stylesheet" type="text/css">
|
<link href="../css.css" rel="stylesheet" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body bgcolor="#333333" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<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">
|
<table width="381" border="0" align="center" cellpadding="0" cellspacing="0" background="../img_nav/bullet.gif">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="68" align="left" valign="top" background="../img_nav/hoja.gif">
|
<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>
|
<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"> Promociones
|
<td width="313" align="left" valign="middle" bgcolor="#333333" class="credits"><font size="4"> Promociones
|
||||||
de invierno</font></td>
|
de invierno</font></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="texto">
|
<td colspan="2" class="texto">
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<p><br>
|
<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">
|
<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ólo
|
- Estancia de <strong>3 noches</strong> pagando <strong>sólo
|
||||||
2<br>
|
2<br>
|
||||||
</strong>ó<br>
|
</strong>ó<br>
|
||||||
<span class="menu2"> </span> <span class="credits"><strong><font size="3">Cena
|
<span class="menu2"> </span> <span class="credits"><strong><font size="3">Cena
|
||||||
gratis</font></strong></span></font><font color="#FF3300" size="2"><strong>
|
gratis</font></strong></span></font><font color="#FF3300" size="2"><strong>
|
||||||
</strong></font><font size="2">- Te invitamos a una cena con la estancia
|
</strong></font><font size="2">- Te invitamos a una cena con la estancia
|
||||||
de <strong>2 noches</strong>.</font></p>
|
de <strong>2 noches</strong>.</font></p>
|
||||||
<p class="menu"><span class="commentaires">Realiza tu reserva <strong>ya</strong>,
|
<p class="menu"><span class="commentaires">Realiza tu reserva <strong>ya</strong>,
|
||||||
estas ofertas son válidas únicamente hasta el <strong>31
|
estas ofertas son válidas únicamente hasta el <strong>31
|
||||||
de Marzo y no incluyen el puente de San José (18-21 Marzo)</strong>.</span><br>
|
de Marzo y no incluyen el puente de San José (18-21 Marzo)</strong>.</span><br>
|
||||||
<br>
|
<br>
|
||||||
</p>
|
</p>
|
||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
<script type="text/javascript">
|
||||||
</html>
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -72,7 +72,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -94,23 +95,43 @@ body {
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><script type="text/javascript">
|
<td height="200">
|
||||||
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
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
</script>
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<noscript>
|
<param name="quality" value="high">
|
||||||
<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="wmode" value="transparent">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<param name="quality" value="high">
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
<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>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</object>
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
</noscript>
|
<!--[if !IE]>-->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<param name="quality" value="high">
|
||||||
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="11" bgcolor="#333333"> </td>
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
<td width="612" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<span class="menu2">Tarifas </span></td>
|
<td width="615" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<span class="menu2">Tarifas </span></td>
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -323,8 +344,21 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
</span> <span class="texto"><strong class="textoNegrita">(7% IVA no incluido)</strong></span></td>
|
</span> <span class="texto"><strong class="textoNegrita">(7% IVA no incluido)</strong></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
|
<table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
223
index.htm
223
index.htm
@ -1,109 +1,114 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="description"
|
<meta name="description"
|
||||||
content="Villa de Palacios ::: Casona Rural en el valle de Aras (Cantabria)">
|
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. ">
|
<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.-->
|
<!-- 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,
|
<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,
|
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,
|
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,
|
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">
|
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,
|
<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,
|
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,
|
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,
|
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">
|
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.
|
<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 ">
|
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.
|
<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 ">
|
ideal para tus vacaciones y fines de semana de turismo rural en Cantabria ">
|
||||||
<META NAME="Language" content="español">
|
<META NAME="Language" content="español">
|
||||||
<META NAME="Revisit" content="7 days">
|
<META NAME="Revisit" content="7 days">
|
||||||
<META NAME="Distribution" CONTENT="Global">
|
<META NAME="Distribution" CONTENT="Global">
|
||||||
<META NAME="Robots" CONTENT="All">
|
<META NAME="Robots" CONTENT="All">
|
||||||
<META NAME="Author" CONTENT="planetagalleta.com">
|
<META NAME="Author" CONTENT="planetagalleta.com">
|
||||||
|
|
||||||
<title>La Villa de Palacios :: Casona rural :: Cantabria</title>
|
<title>La Villa de Palacios :: Casona rural :: Cantabria</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
<link rel="stylesheet" href="css.css" type="text/css">
|
<link rel="stylesheet" href="css.css" type="text/css">
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
<!--
|
<!--
|
||||||
function MM_swapImgRestore() { //v3.0
|
function MM_swapImgRestore() { //v3.0
|
||||||
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
|
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
|
||||||
}
|
}
|
||||||
|
|
||||||
function MM_preloadImages() { //v3.0
|
function MM_preloadImages() { //v3.0
|
||||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
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++)
|
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];}}
|
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||||
}
|
}
|
||||||
|
|
||||||
function MM_findObj(n, d) { //v4.01
|
function MM_findObj(n, d) { //v4.01
|
||||||
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
|
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);}
|
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];
|
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);
|
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;
|
if(!x && d.getElementById) x=d.getElementById(n); return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
function MM_swapImage() { //v3.0
|
function MM_swapImage() { //v3.0
|
||||||
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
|
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
|
||||||
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
|
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
</script>
|
</script>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
body {
|
body {
|
||||||
background-color: #DCDCB8;
|
background-color: #DCDCB8;
|
||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style></head>
|
</style></head>
|
||||||
|
|
||||||
<body text="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('img_nav/turquoises.gif')">
|
<body text="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('img_nav/turquoises.gif')">
|
||||||
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0">
|
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td height="363" align="center" valign="middle">
|
<td height="363" align="center" valign="middle">
|
||||||
<table width="700" height="332" border="0" align="center" cellpadding="5" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
<table width="700" height="332" border="0" align="center" cellpadding="5" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="520" height="332" valign="top" class="link">
|
<td width="520" height="332" valign="top" class="link">
|
||||||
<table width="650" border="0" cellspacing="0" cellpadding="0" height="300">
|
<table width="650" border="0" cellspacing="0" cellpadding="0" height="300">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td height="180"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="700" height="200">
|
<td height="180"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="700" height="200">
|
||||||
<param name=movie value="img_nav/top.swf">
|
<param name=movie value="img_nav/top.swf">
|
||||||
<param name=quality value=high><param name="SCALE" value="exactfit">
|
<param name=quality value=high><param name="SCALE" value="exactfit">
|
||||||
<embed src="img_nav/top.swf" width="700" height="200" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="exactfit">
|
<embed src="img_nav/top.swf" width="700" height="200" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="exactfit">
|
||||||
</embed>
|
</embed>
|
||||||
</object></td>
|
</object></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td height="94" valign="bottom"> <table width="100%" border="0" cellpadding="5" cellspacing="0" bgcolor="#333333">
|
<td height="94" valign="bottom"> <table width="100%" border="0" cellpadding="5" cellspacing="0" bgcolor="#333333">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="56%" valign="top"><div align="center"></div></td>
|
<td width="56%" valign="top"><div align="center"></div></td>
|
||||||
<td width="19%" valign="middle"><br> <img name="Image10" border="0" src="img_nav/bullet.gif" width="23" height="5"><a href="esp/home_esp.htm" class="titulos2"> Bienvenido</a> <br>
|
<td width="19%" valign="middle"><br> <img name="Image10" border="0" src="img_nav/bullet.gif" width="23" height="5"><a href="esp/home_esp.htm" class="titulos2"> Bienvenido</a> <br>
|
||||||
<br></td>
|
<br></td>
|
||||||
<td width="25%" valign="middle"> <br> <img src="img_nav/bullet.gif" width="23" height="5" border="0"><a href="eng/home_eng.htm" class="titulos2"> Welcome</a><br>
|
<td width="25%" valign="middle"> <br> <img src="img_nav/bullet.gif" width="23" height="5" border="0"><a href="eng/home_eng.htm" class="titulos2"> Welcome</a><br>
|
||||||
<br></td>
|
<br></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td height="63" colspan="3"><div align="right"><br>
|
<td height="63" colspan="3"><div align="right"><br>
|
||||||
<br>
|
<br>
|
||||||
<img src="img_nav/logocasonas.gif" width="69" height="60"> <img src="img_nav/logo_clubdecalidad.jpg" width="165" height="60"></div></td>
|
<img src="img_nav/logocasonas.gif" width="69" height="60"> <img src="img_nav/logo_clubdecalidad.jpg" width="165" height="60"></div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </td>
|
</table> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </td>
|
</table> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<div align="right"><a href="http://www.planetagalleta.com" class="credits" target="_blank">©
|
<div align="right"><a href="http://www.planetagalleta.com" class="credits" target="_blank">©
|
||||||
PlanetaGalleta.com | Web design | 2003</a></div> </td>
|
PlanetaGalleta.com | Web design | 2003</a></div> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
<script type="text/javascript">
|
||||||
</html>
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|||||||
@ -3,18 +3,6 @@
|
|||||||
return unserialize(file_get_contents($filename));
|
return unserialize(file_get_contents($filename));
|
||||||
}
|
}
|
||||||
|
|
||||||
function cargar_datos_promociones () {
|
|
||||||
return cargar_datos("promociones.dat");
|
|
||||||
}
|
|
||||||
|
|
||||||
function cargar_datos_temporadas () {
|
|
||||||
return cargar_datos("temporadas.dat");
|
|
||||||
}
|
|
||||||
|
|
||||||
function cargar_datos_tarifas () {
|
|
||||||
return cargar_datos("tarifas.dat");
|
|
||||||
}
|
|
||||||
|
|
||||||
function cargar_plantilla_cas () {
|
function cargar_plantilla_cas () {
|
||||||
return file_get_contents('./plantillas/tarifas_esp.htm');
|
return file_get_contents('./plantillas/tarifas_esp.htm');
|
||||||
}
|
}
|
||||||
@ -23,15 +11,23 @@
|
|||||||
return file_get_contents('./plantillas/tarifas_eng.htm');
|
return file_get_contents('./plantillas/tarifas_eng.htm');
|
||||||
}
|
}
|
||||||
|
|
||||||
function generar_pagina_tarifas_cas ($texto_tarifas_cas) {
|
function generar_pagina_tarifas_cas ($texto_tarifas_cas, $accion) {
|
||||||
$fichero = fopen('../tarifas_esp.htm', 'w');
|
if ($accion == 'guardar')
|
||||||
|
$fichero = fopen('../esp/tarifas_esp.htm', 'w');
|
||||||
|
else
|
||||||
|
$fichero = fopen('previsualizar_tarifas_esp.htm', 'w');
|
||||||
|
|
||||||
fwrite($fichero, $texto_tarifas_cas);
|
fwrite($fichero, $texto_tarifas_cas);
|
||||||
fclose($fichero);
|
fclose($fichero);
|
||||||
}
|
}
|
||||||
|
|
||||||
function generar_pagina_tarifas_eng ($texto_tarifas_eng) {
|
function generar_pagina_tarifas_eng ($texto_tarifas_eng, $accion) {
|
||||||
$fichero = fopen('../tarifas_eng.htm', 'w');
|
if ($accion == 'guardar')
|
||||||
fwrite($fichero, $texto_tarifas_eng);
|
$fichero = fopen('../eng/tarifas_eng.htm', 'w');
|
||||||
|
else
|
||||||
|
$fichero = fopen('previsualizar_tarifas_eng.htm', 'w');
|
||||||
|
|
||||||
|
fwrite($fichero, $texto_tarifas_eng);
|
||||||
fclose($fichero);
|
fclose($fichero);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,50 @@
|
|||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<title>La Villa de Palacios :: Casona rural :: Cantabria</title>
|
||||||
<title>Documento sin título</title>
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||||
</head>
|
<link rel="stylesheet" href="../css.css" type="text/css">
|
||||||
|
<style type="text/css">
|
||||||
|
<!--
|
||||||
|
body {
|
||||||
|
background-color: #DCDCB8;
|
||||||
|
}
|
||||||
|
-->
|
||||||
|
</style></head>
|
||||||
|
|
||||||
<body>
|
<body text="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('../img_nav/turquoises.gif')">
|
||||||
|
<table width="650" border="0" align="center" height="100%" cellpadding="0" cellspacing="0">
|
||||||
|
<tr>
|
||||||
|
<td height="363" align="center" valign="middle">
|
||||||
|
<table width="700" height="332" border="0" align="center" cellpadding="5" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
|
||||||
|
<tr>
|
||||||
|
<td width="520" height="332" valign="top" class="link">
|
||||||
|
<table width="650" border="0" cellspacing="0" cellpadding="0" height="300">
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td height="180"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="700" height="200">
|
||||||
|
<param name=movie value="../img_nav/top.swf">
|
||||||
|
<param name=quality value=high><param name="SCALE" value="exactfit">
|
||||||
|
<embed src="../img_nav/top.swf" width="700" height="200" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="exactfit">
|
||||||
|
</embed>
|
||||||
|
</object></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td height="94" valign="bottom"> <table width="100%" border="0" cellpadding="5" cellspacing="0" bgcolor="#333333">
|
||||||
|
<tr>
|
||||||
|
<td width="42%" valign="top"> </td>
|
||||||
|
<td width="33%" valign="middle"><p><br/><img name="Image10" border="0" src="../img_nav/bullet.gif" width="23" height="5"><a href="promociones.php" class="titulos2"> Cambiar las promociones</a><br>
|
||||||
|
<br>
|
||||||
|
<img src="../img_nav/bullet.gif" width="23" height="5" border="0"><a href="tarifas.php" class="titulos2"> Cambiar las tarifas</a><br>
|
||||||
|
<br>
|
||||||
|
<img src="../img_nav/bullet.gif" width="23" height="5" border="0"><a href="../index.htm" class="titulos2"> Volver a la página inicial </a><br><br/>
|
||||||
|
</p></td>
|
||||||
|
</tr>
|
||||||
|
</table> </td>
|
||||||
|
</tr>
|
||||||
|
</table> </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -68,7 +68,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -92,21 +93,40 @@ body {
|
|||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><script type="text/javascript">
|
<td height="200">
|
||||||
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
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
</script>
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<noscript>
|
<param name="quality" value="high">
|
||||||
<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="wmode" value="transparent">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<param name="quality" value="high">
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
<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>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</object>
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
</noscript>
|
<!--[if !IE]>-->
|
||||||
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<param name="quality" value="high">
|
||||||
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
|
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Reserve online now</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<span class="menu2">Prices </span></td>
|
<td width="540" align="left" 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">Lodging</a> ·<a href="cantabria_eng.htm" class="menu">The region</a> ·<a href="contacto_eng.htm" class="menu">Reserves & Contact </a>·<span class="menu2">Prices </span></td>
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
<td width="129" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">+34 942 679 150</span> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -264,8 +284,19 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<strong>(7% VAT not included)</strong></span></td>
|
<strong>(7% VAT not included)</strong></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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>
|
<td valign="top" bgcolor="#333333" height="40" align="left" ><table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>
|
||||||
|
Tel. +34 942 679 150 - Fax. +34 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -72,7 +72,8 @@ function MM_preloadImages() { //v3.0
|
|||||||
}
|
}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
|
<script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
|
||||||
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -96,21 +97,40 @@ body {
|
|||||||
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
<body text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
||||||
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
<table width="700" border="0" align="center" cellpadding="0" cellspacing="6" bgcolor="#FFFFFF">
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td><script type="text/javascript">
|
<td height="200">
|
||||||
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
|
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="688" height="200">
|
||||||
</script>
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<noscript>
|
<param name="quality" value="high">
|
||||||
<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="wmode" value="transparent">
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="swfversion" value="6.0.65.0">
|
||||||
<param name="quality" value="high">
|
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
|
||||||
<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>
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
</object>
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
</noscript>
|
<!--[if !IE]>-->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
<object type="application/x-shockwave-flash" data="../img_nav/top.swf" width="688" height="200">
|
||||||
|
<!--<![endif]-->
|
||||||
|
<param name="quality" value="high">
|
||||||
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<param name="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
|
||||||
|
<div>
|
||||||
|
<h4>El contenido de esta página requiere de una versión más moderna de Adobe Flash Player.</h4>
|
||||||
|
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
|
||||||
|
</div>
|
||||||
|
<!--[if !IE]>-->
|
||||||
|
</object>
|
||||||
|
<!--<![endif]-->
|
||||||
|
</object>
|
||||||
|
<a href="#" class="reservas-online">Haz tu reserva online</a>
|
||||||
|
</td></tr>
|
||||||
|
<tr align="left" valign="top">
|
||||||
|
<td>
|
||||||
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="11" bgcolor="#333333"> </td>
|
<td width="2" bgcolor="#333333"> </td>
|
||||||
<td width="612" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<span class="menu2">Tarifas </span></td>
|
<td width="615" align="left" bgcolor="#333333" class="menu"><a href="home_esp.htm" class="menu">Presentación </a> ·<a href="galeria_esp.htm" class="menu">Fotografías </a>·<a href="alojamiento_esp.htm" class="menu">Alojamiento</a> ·<a href="cantabria_esp.htm" class="menu">La comarca</a> ·<a href="contacto_esp.htm" class="menu">Reserva y Contacto </a>·<span class="menu2">Tarifas </span></td>
|
||||||
<td width="21" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
<td width="18" align="center" bgcolor="#FFCC00" valign="middle"><img src="../img_nav/phone.gif" width="18" height="15"></td>
|
||||||
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
<td width="96" align="center" bgcolor="#FFCC00" valign="middle"><span class="telefono">942 679 150</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -263,8 +283,20 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
</span> <span class="texto"><strong class="textoNegrita">(7% IVA no incluido)</strong></span></td>
|
</span> <span class="texto"><strong class="textoNegrita">(7% IVA no incluido)</strong></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top" bgcolor="#333333" height="40" align="left"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
<td valign="top" bgcolor="#333333" height="40" align="left" >
|
||||||
|
<table width="100%" border="0">
|
||||||
|
<tr>
|
||||||
|
<td width="80"><img src="../img_nav/hoja.gif" width="76" height="40"></td>
|
||||||
|
<td valign="middle" class="texto-pie">Casona <strong>La Villa de Palacios</strong> - Barrio Palacios 150 - San Miguel de Aras. Voto - 39766 - Cantabria<br>Tel. 942 679 150 - Fax. 942 679 241 - e-mail: <a href="mailto:info@villadepalacios.com" class="texto-pie">info@villadepalacios.com</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -4,11 +4,15 @@
|
|||||||
$seccion = $_REQUEST['seccion'];
|
$seccion = $_REQUEST['seccion'];
|
||||||
$accion=$_REQUEST['accion'];
|
$accion=$_REQUEST['accion'];
|
||||||
|
|
||||||
echo 'seccion -> '.$seccion;
|
$fichero_promociones = "promociones.dat";
|
||||||
echo 'accion -> '.$accion;
|
$fichero_temporadas = "temporadas.dat";
|
||||||
|
$fichero_tarifas = "tarifas.dat";
|
||||||
|
|
||||||
if ($seccion == 'promociones') {
|
if ($seccion == 'promociones') {
|
||||||
$filename = "promociones.dat";
|
if ($accion == 'guardar')
|
||||||
|
$fichero_promociones = "promociones.dat";
|
||||||
|
else
|
||||||
|
$fichero_promociones = "promociones_previsualizar.dat";
|
||||||
|
|
||||||
$promo_1 = array(TITULO_CAS => $_REQUEST['titulo1-cas'],
|
$promo_1 = array(TITULO_CAS => $_REQUEST['titulo1-cas'],
|
||||||
TITULO_ENG => $_REQUEST['titulo1-eng'],
|
TITULO_ENG => $_REQUEST['titulo1-eng'],
|
||||||
@ -46,17 +50,19 @@
|
|||||||
TEXTO_ENG => $_REQUEST['texto5-eng']);
|
TEXTO_ENG => $_REQUEST['texto5-eng']);
|
||||||
|
|
||||||
$promos = array($promo_1, $promo_2, $promo_3, $promo_4, $promo_5);
|
$promos = array($promo_1, $promo_2, $promo_3, $promo_4, $promo_5);
|
||||||
echo "<pre>";
|
|
||||||
print_r($promos);
|
|
||||||
echo "</pre>";
|
|
||||||
// Guardar los datos
|
// Guardar los datos
|
||||||
$fp = fopen($filename, 'w+') or die("No puedo abrir el fichero ".$filename." para guardar.");
|
$fp = fopen($fichero_promociones, 'w+') or die("No puedo abrir el fichero ".$fichero_promociones." para guardar.");
|
||||||
fwrite($fp, serialize($promos));
|
fwrite($fp, serialize($promos));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($seccion == 'tarifas') {
|
if ($seccion == 'tarifas') {
|
||||||
$filename = "temporadas.dat";
|
if ($accion == 'guardar')
|
||||||
|
$fichero_temporadas = "temporadas.dat";
|
||||||
|
else
|
||||||
|
$fichero_temporadas = "temporadas_previsualizar.dat";
|
||||||
|
|
||||||
$temporadas = array(BAJA_CAS => $_REQUEST['temp-baja-cas'],
|
$temporadas = array(BAJA_CAS => $_REQUEST['temp-baja-cas'],
|
||||||
BAJA_ENG => $_REQUEST['temp-baja-eng'],
|
BAJA_ENG => $_REQUEST['temp-baja-eng'],
|
||||||
MEDIA_CAS => $_REQUEST['temp-media-cas'],
|
MEDIA_CAS => $_REQUEST['temp-media-cas'],
|
||||||
@ -64,11 +70,15 @@
|
|||||||
ALTA_CAS => $_REQUEST['temp-alta-cas'],
|
ALTA_CAS => $_REQUEST['temp-alta-cas'],
|
||||||
ALTA_ENG => $_REQUEST['temp-alta-eng']);
|
ALTA_ENG => $_REQUEST['temp-alta-eng']);
|
||||||
// Guardar los datos
|
// Guardar los datos
|
||||||
$fp = fopen($filename, 'w+') or die("No puedo abrir el fichero ".$filename." para guardar.");
|
$fp = fopen($fichero_temporadas, 'w+') or die("No puedo abrir el fichero ".$fichero_temporadas." para guardar.");
|
||||||
fwrite($fp, serialize($temporadas));
|
fwrite($fp, serialize($temporadas));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
|
||||||
$filename = "tarifas.dat";
|
if ($accion == 'guardar')
|
||||||
|
$fichero_tarifas = "tarifas.dat";
|
||||||
|
else
|
||||||
|
$fichero_tarifas = "tarifas_previsualizar.dat";
|
||||||
|
|
||||||
$tarifas_generales_baja = array(INDIVIDUAL => $_REQUEST['tarifa-baja-individual'],
|
$tarifas_generales_baja = array(INDIVIDUAL => $_REQUEST['tarifa-baja-individual'],
|
||||||
DOBLE => $_REQUEST['tarifa-baja-doble'],
|
DOBLE => $_REQUEST['tarifa-baja-doble'],
|
||||||
CAMA => $_REQUEST['tarifa-baja-cama'],
|
CAMA => $_REQUEST['tarifa-baja-cama'],
|
||||||
@ -114,7 +124,7 @@
|
|||||||
COMPLETA => array($tarifas_completa_baja, $tarifas_completa_media, $tarifas_completa_alta));
|
COMPLETA => array($tarifas_completa_baja, $tarifas_completa_media, $tarifas_completa_alta));
|
||||||
|
|
||||||
// Guardar los datos
|
// Guardar los datos
|
||||||
$fp = fopen($filename, 'w+') or die("No puedo abrir el fichero ".$filename." para guardar.");
|
$fp = fopen($fichero_tarifas, 'w+') or die("No puedo abrir el fichero ".$fichero_tarifas." para guardar.");
|
||||||
fwrite($fp, serialize($tarifas));
|
fwrite($fp, serialize($tarifas));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
|
||||||
@ -123,18 +133,29 @@
|
|||||||
$plantilla_cas = cargar_plantilla_cas();
|
$plantilla_cas = cargar_plantilla_cas();
|
||||||
$plantilla_eng = cargar_plantilla_eng();
|
$plantilla_eng = cargar_plantilla_eng();
|
||||||
|
|
||||||
$promos = cargar_datos_promociones();
|
$promos = cargar_datos($fichero_promociones);
|
||||||
$plantilla_cas = actualizar_promociones_cas($promos, $plantilla_cas);
|
$plantilla_cas = actualizar_promociones_cas($promos, $plantilla_cas);
|
||||||
$plantilla_eng = actualizar_promociones_eng($promos, $plantilla_eng);
|
$plantilla_eng = actualizar_promociones_eng($promos, $plantilla_eng);
|
||||||
|
|
||||||
$temporadas = cargar_datos_temporadas();
|
$temporadas = cargar_datos($fichero_temporadas);
|
||||||
$plantilla_cas = actualizar_temporadas_cas($temporadas, $plantilla_cas);
|
$plantilla_cas = actualizar_temporadas_cas($temporadas, $plantilla_cas);
|
||||||
$plantilla_eng = actualizar_temporadas_eng($temporadas, $plantilla_eng);
|
$plantilla_eng = actualizar_temporadas_eng($temporadas, $plantilla_eng);
|
||||||
|
|
||||||
$tarifas = cargar_datos_tarifas();
|
$tarifas = cargar_datos($fichero_tarifas);
|
||||||
$plantilla_cas = actualizar_tarifas($tarifas, $plantilla_cas);
|
$plantilla_cas = actualizar_tarifas($tarifas, $plantilla_cas);
|
||||||
$plantilla_eng = actualizar_tarifas($tarifas, $plantilla_eng);
|
$plantilla_eng = actualizar_tarifas($tarifas, $plantilla_eng);
|
||||||
|
|
||||||
generar_pagina_tarifas_cas($plantilla_cas);
|
generar_pagina_tarifas_cas($plantilla_cas, $accion);
|
||||||
generar_pagina_tarifas_eng($plantilla_eng);
|
generar_pagina_tarifas_eng($plantilla_eng, $accion);
|
||||||
|
|
||||||
|
if ($accion == 'guardar') {
|
||||||
|
print "<script>alert('Cambios guardados')</script>";
|
||||||
|
print("<script>window.location.replace('index.htm');</script>");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if ($accion == 'previsualizar_castellano')
|
||||||
|
header('Location: previsualizar_tarifas_esp.htm');
|
||||||
|
else
|
||||||
|
header('Location: previsualizar_tarifas_eng.htm');
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
a:5:{i:0;a:6:{s:10:"TITULO_CAS";s:20:"Fin de semana COUPLE";s:10:"TITULO_ENG";s:16:"ROMANTIC weekend";s:10:"PRECIO_CAS";s:16:"73 € por persona";s:10:"PRECIO_ENG";s:16:"73 € por persona";s:9:"TEXTO_CAS";s:232:"<p><strong>Incluye:<br /> <br /> - </strong>Detalle de bienvenida<br /> - 2 noches de hotel<br /> - 2 desayunos<br /> - 1 cena romántica</p>";s:9:"TEXTO_ENG";s:126:"<p><strong>Include:<br /> <br /> - </strong>Welcome gift <br /> - 2 nights <br /> - 2 breakfast<br /> - 1 romantic dinner</p>";}i:1;a:6:{s:10:"TITULO_CAS";s:19:"Fin de semana SPORT";s:10:"TITULO_ENG";s:13:"SPORT weekend";s:10:"PRECIO_CAS";s:16:"79 € por persona";s:10:"PRECIO_ENG";s:16:"79 € por persona";s:9:"TEXTO_CAS";s:356:"<p><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ón<br /> * Actividad espeleológica o visita a cueva de la comarca</p>";s:9:"TEXTO_ENG";s:269:"<p><strong>Include:<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ón river <br /> * Cave exploring</p>";}i:2;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 4";s:10:"TITULO_ENG";s:8:"FAMILY 4";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:193:"<p><strong>Incluye:</strong></p>
|
a:5:{i:0;a:6:{s:10:"TITULO_CAS";s:20:"Fin de semana COUPLE";s:10:"TITULO_ENG";s:16:"ROMANTIC weekend";s:10:"PRECIO_CAS";s:16:"73 € por persona";s:10:"PRECIO_ENG";s:16:"73 € por persona";s:9:"TEXTO_CAS";s:232:"<p><strong>Incluye:<br /> <br /> - </strong>Detalle de bienvenida<br /> - 2 noches de hotel<br /> - 2 desayunos<br /> - 1 cena romántica</p>";s:9:"TEXTO_ENG";s:126:"<p><strong>Include:<br /> <br /> - </strong>Welcome gift <br /> - 2 nights <br /> - 2 breakfast<br /> - 1 romantic dinner</p>";}i:1;a:6:{s:10:"TITULO_CAS";s:19:"Fin de semana SPORT";s:10:"TITULO_ENG";s:13:"SPORT weekend";s:10:"PRECIO_CAS";s:16:"79 € por persona";s:10:"PRECIO_ENG";s:16:"79 € por persona";s:9:"TEXTO_CAS";s:356:"<p><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ón<br /> * Actividad espeleológica o visita a cueva de la comarca</p>";s:9:"TEXTO_ENG";s:269:"<p><strong>Include:<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ón river <br /> * Cave exploring</p>";}i:2;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 4";s:10:"TITULO_ENG";s:8:"FAMILY 4";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:193:"<p><strong>Incluye:</strong></p>
|
||||||
<p> </p>
|
<p> </p>
|
||||||
<p>2 noches en habitación doble<br /> + 2 camas supletorias<br /> + 4 desayunos</p>";s:9:"TEXTO_ENG";s:111:"<p><strong>For 4 persons </strong></p>
|
<p>2 noches en habitación doble<br /> + 2 camas supletorias<br /> + 4 desayunos</p>";s:9:"TEXTO_ENG";s:111:"<p><strong>For 4 persons </strong></p>
|
||||||
<p>2 nights in double-room<br /> + 2 added beds<br /> + 4 breakfast</p>";}i:3;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 6";s:10:"TITULO_ENG";s:9:"FAMILY 6 ";s:10:"PRECIO_CAS";s:12:"250 € Total ";s:10:"PRECIO_ENG";s:12:"250 € Total ";s:9:"TEXTO_CAS";s:196:"<p><strong>Oferta para 6 personas<br /> <br /> </strong>2 noches en <br /> 2 habitaciones dobles<br /> + 2 camas supletorias<br /> + 6 desayunos</p>";s:9:"TEXTO_ENG";s:116:"<p><strong>For 6 persons<br /> <br /> </strong>2 nights in double-room<br /> + 2 added beds<br /> + 6 breakfast</p>";}i:4;a:6:{s:10:"TITULO_CAS";s:10:"OFERTA 3x2";s:10:"TITULO_ENG";s:9:"OFFER 3x2";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:175:"<p><strong>Por dos días de estancia, el tercero le sale gratis </strong><span class="style15">(no acumulable a las otras ofertas. No incluye los desayunos)</span></p>";s:9:"TEXTO_ENG";s:178:"<p><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>";}}
|
<p>2 nights in double-room<br /> + 2 added beds<br /> + 4 breakfast</p>";}i:3;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 6";s:10:"TITULO_ENG";s:9:"FAMILY 6 ";s:10:"PRECIO_CAS";s:12:"250 € Total ";s:10:"PRECIO_ENG";s:12:"250 € Total ";s:9:"TEXTO_CAS";s:196:"<p><strong>Oferta para 6 personas<br /> <br /> </strong>2 noches en <br /> 2 habitaciones dobles<br /> + 2 camas supletorias<br /> + 6 desayunos</p>";s:9:"TEXTO_ENG";s:116:"<p><strong>For 6 persons<br /> <br /> </strong>2 nights in double-room<br /> + 2 added beds<br /> + 6 breakfast</p>";}i:4;a:6:{s:10:"TITULO_CAS";s:10:"OFERTA 3x2";s:10:"TITULO_ENG";s:9:"OFFER 3x2";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:175:"<p><strong>Por dos días de estancia, el tercero le sale gratis </strong><span class="style15">(no acumulable a las otras ofertas. No incluye los desayunos)</span></p>";s:9:"TEXTO_ENG";s:177:"<p><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>";}}
|
||||||
@ -229,9 +229,9 @@ h1 {
|
|||||||
<br/>
|
<br/>
|
||||||
<table width="100%" border="0" cellpadding="5" cellspacing="2" >
|
<table width="100%" border="0" cellpadding="5" cellspacing="2" >
|
||||||
<tr>
|
<tr>
|
||||||
<td width="33%" align="center"><input type="submit" value="Previsualizar los cambios" onclick="javascript:window.open('', 'Previsualizar', 'height=500,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar';" /></td>
|
<td width="33%" align="center"><input type="submit" value="Previsualizar versión en castellano" onClick="javascript:window.open('', 'Previsualizar', 'width=800,height=700,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar_castellano';" /><br/><input type="submit" value="Previsualizar versión en inglés" onClick="javascript:window.open('', 'Previsualizar', 'width=800,height=700,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar_ingles';" /></td>
|
||||||
<td width="33%" align="center"><input type=submit value="Guardar los cambios" onclick="javascript:form.target='_self';form.accion.value='guardar'" /></td>
|
<td width="33%" align="center"><input type=submit value="Guardar los cambios" onClick="javascript:form.target='_self';form.accion.value='guardar'" /></td>
|
||||||
<td width="33%" align="center"><input type="button" value="Salir sin guardar" onclick="location.href='index.htm'"/></td>
|
<td width="33%" align="center"><input type="button" value="Salir sin guardar" onClick="location.href='index.htm'"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
4
privado/promociones_previsualizar.dat
Normal file
4
privado/promociones_previsualizar.dat
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
a:5:{i:0;a:6:{s:10:"TITULO_CAS";s:20:"Fin de semana COUPLE";s:10:"TITULO_ENG";s:16:"ROMANTIC weekend";s:10:"PRECIO_CAS";s:16:"73 € por persona";s:10:"PRECIO_ENG";s:16:"73 € por persona";s:9:"TEXTO_CAS";s:232:"<p><strong>Incluye:<br /> <br /> - </strong>Detalle de bienvenida<br /> - 2 noches de hotel<br /> - 2 desayunos<br /> - 1 cena romántica</p>";s:9:"TEXTO_ENG";s:126:"<p><strong>Include:<br /> <br /> - </strong>Welcome gift <br /> - 2 nights <br /> - 2 breakfast<br /> - 1 romantic dinner</p>";}i:1;a:6:{s:10:"TITULO_CAS";s:19:"Fin de semana SPORT";s:10:"TITULO_ENG";s:13:"SPORT weekend";s:10:"PRECIO_CAS";s:16:"79 € por persona";s:10:"PRECIO_ENG";s:16:"79 € por persona";s:9:"TEXTO_CAS";s:356:"<p><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ón<br /> * Actividad espeleológica o visita a cueva de la comarca</p>";s:9:"TEXTO_ENG";s:269:"<p><strong>Include:<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ón river <br /> * Cave exploring</p>";}i:2;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 4";s:10:"TITULO_ENG";s:8:"FAMILY 4";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:193:"<p><strong>Incluye:</strong></p>
|
||||||
|
<p> </p>
|
||||||
|
<p>2 noches en habitación doble<br /> + 2 camas supletorias<br /> + 4 desayunos</p>";s:9:"TEXTO_ENG";s:111:"<p><strong>For 4 persons </strong></p>
|
||||||
|
<p>2 nights in double-room<br /> + 2 added beds<br /> + 4 breakfast</p>";}i:3;a:6:{s:10:"TITULO_CAS";s:22:"Fin de semana FAMILY 6";s:10:"TITULO_ENG";s:9:"FAMILY 6 ";s:10:"PRECIO_CAS";s:12:"250 € Total ";s:10:"PRECIO_ENG";s:12:"250 € Total ";s:9:"TEXTO_CAS";s:196:"<p><strong>Oferta para 6 personas<br /> <br /> </strong>2 noches en <br /> 2 habitaciones dobles<br /> + 2 camas supletorias<br /> + 6 desayunos</p>";s:9:"TEXTO_ENG";s:116:"<p><strong>For 6 persons<br /> <br /> </strong>2 nights in double-room<br /> + 2 added beds<br /> + 6 breakfast</p>";}i:4;a:6:{s:10:"TITULO_CAS";s:10:"OFERTA 3x2";s:10:"TITULO_ENG";s:9:"OFFER 3x2";s:10:"PRECIO_CAS";s:11:"140 € Total";s:10:"PRECIO_ENG";s:11:"140 € Total";s:9:"TEXTO_CAS";s:175:"<p><strong>Por dos días de estancia, el tercero le sale gratis </strong><span class="style15">(no acumulable a las otras ofertas. No incluye los desayunos)</span></p>";s:9:"TEXTO_ENG";s:177:"<p><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>";}}
|
||||||
1
privado/tarifas.dat
Normal file
1
privado/tarifas.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
a:2:{s:9:"GENERALES";a:3:{i:0;a:5:{s:10:"INDIVIDUAL";s:4:"55 €";s:5:"DOBLE";s:4:"65 €";s:4:"CAMA";s:4:"17 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:1;a:5:{s:10:"INDIVIDUAL";s:4:"67 €";s:5:"DOBLE";s:4:"79 €";s:4:"CAMA";s:4:"22 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:2;a:5:{s:10:"INDIVIDUAL";s:4:"83 €";s:5:"DOBLE";s:4:"96 €";s:4:"CAMA";s:4:"26 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}}s:8:"COMPLETA";a:3:{i:0;a:6:{s:5:"HOTEL";s:5:"392 €";s:4:"CAMA";s:4:"17 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:1;a:6:{s:5:"HOTEL";s:5:"495 €";s:4:"CAMA";s:4:"22 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:2;a:6:{s:5:"HOTEL";s:5:"611 €";s:4:"CAMA";s:4:"26 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}}}
|
||||||
@ -79,16 +79,12 @@ h1 {
|
|||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
$filename = "temporadas.dat";
|
$filename = "temporadas.dat";
|
||||||
if (file_exists($filename)) {
|
$temporadas = unserialize(file_get_contents($filename));
|
||||||
$temporadas = unserialize(file_get_contents($filename));
|
|
||||||
}
|
|
||||||
|
|
||||||
$filename = "tarifas.dat";
|
$filename = "tarifas.dat";
|
||||||
if (file_exists($filename)) {
|
$todas_tarifas = unserialize(file_get_contents($filename));
|
||||||
$todas_tarifas = unserialize(file_get_contents($filename));
|
$tarifas = $todas_tarifas[GENERALES];
|
||||||
$tarifas = $todas_tarifas[GENERALES];
|
$completa = $todas_tarifas[COMPLETA];
|
||||||
$completa = $todas_tarifas[COMPLETA];
|
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
<form method="post" action="proceso.php">
|
<form method="post" action="proceso.php">
|
||||||
<input type="hidden" name="seccion" value="tarifas"/>
|
<input type="hidden" name="seccion" value="tarifas"/>
|
||||||
@ -137,27 +133,27 @@ h1 {
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. baja</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. baja</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-individual" type="text" size="10" value="<?php echo $tarifas[BAJA][INDIVIDUAL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-individual" type="text" size="10" value="<?php echo $tarifas[0][INDIVIDUAL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-doble" type="text" size="10" value="<?php echo $tarifas[BAJA][DOBLE]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-doble" type="text" size="10" value="<?php echo $tarifas[0][DOBLE]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-cama" type="text" size="10" value="<?php echo $tarifas[BAJA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-cama" type="text" size="10" value="<?php echo $tarifas[0][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-cuna" type="text" size="10" value="<?php echo $tarifas[BAJA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-cuna" type="text" size="10" value="<?php echo $tarifas[0][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-mascota" type="text" size="10" value="<?php echo $tarifas[BAJA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-baja-mascota" type="text" size="10" value="<?php echo $tarifas[0][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. media</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. media</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-individual" type="text" size="10" value="<?php echo $tarifas[MEDIA][INDIVIDUAL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-individual" type="text" size="10" value="<?php echo $tarifas[1][INDIVIDUAL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-doble" type="text" size="10" value="<?php echo $tarifas[MEDIA][DOBLE]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-doble" type="text" size="10" value="<?php echo $tarifas[1][DOBLE]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-cama" type="text" size="10" value="<?php echo $tarifas[MEDIA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-cama" type="text" size="10" value="<?php echo $tarifas[1][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-cuna" type="text" size="10" value="<?php echo $tarifas[MEDIA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-cuna" type="text" size="10" value="<?php echo $tarifas[1][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-mascota" type="text" size="10" value="<?php echo $tarifas[MEDIA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-media-mascota" type="text" size="10" value="<?php echo $tarifas[1][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. alta</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. alta</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-individual" type="text" size="10" value="<?php echo $tarifas[ALTA][INDIVIDUAL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-individual" type="text" size="10" value="<?php echo $tarifas[2][INDIVIDUAL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-doble" type="text" size="10" value="<?php echo $tarifas[ALTA][DOBLE]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-doble" type="text" size="10" value="<?php echo $tarifas[2][DOBLE]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-cama" type="text" size="10" value="<?php echo $tarifas[ALTA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-cama" type="text" size="10" value="<?php echo $tarifas[2][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-cuna" type="text" size="10" value="<?php echo $tarifas[ALTA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-cuna" type="text" size="10" value="<?php echo $tarifas[2][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-mascota" type="text" size="10" value="<?php echo $tarifas[ALTA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="tarifa-alta-mascota" type="text" size="10" value="<?php echo $tarifas[2][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br/>
|
<br/>
|
||||||
@ -173,37 +169,37 @@ h1 {
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. baja</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. baja</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-hotel" type="text" size="10" value="<?php echo $completa[BAJA][HOTEL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-hotel" type="text" size="10" value="<?php echo $completa[0][HOTEL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cama" type="text" size="10" value="<?php echo $completa[BAJA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cama" type="text" size="10" value="<?php echo $completa[0][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-desayuno" type="text" size="10" value="<?php echo $completa[BAJA][DESAYUNO]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-desayuno" type="text" size="10" value="<?php echo $completa[0][DESAYUNO]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cocina" type="text" size="10" value="<?php echo $completa[BAJA][COCINA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cocina" type="text" size="10" value="<?php echo $completa[0][COCINA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cuna" type="text" size="10" value="<?php echo $completa[BAJA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-cuna" type="text" size="10" value="<?php echo $completa[0][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-mascota" type="text" size="10" value="<?php echo $completa[BAJA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-baja-mascota" type="text" size="10" value="<?php echo $completa[0][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. media</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. media</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-hotel" type="text" size="10" value="<?php echo $completa[MEDIA][HOTEL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-hotel" type="text" size="10" value="<?php echo $completa[1][HOTEL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cama" type="text" size="10" value="<?php echo $completa[MEDIA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cama" type="text" size="10" value="<?php echo $completa[1][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-desayuno" type="text" size="10" value="<?php echo $completa[MEDIA][DESAYUNO]; ?>"></td
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-desayuno" type="text" size="10" value="<?php echo $completa[1][DESAYUNO]; ?>"></td
|
||||||
>
|
>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cocina" type="text" size="10" value="<?php echo $completa[MEDIA][COCINA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cocina" type="text" size="10" value="<?php echo $completa[1][COCINA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cuna" type="text" size="10" value="<?php echo $completa[MEDIA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-cuna" type="text" size="10" value="<?php echo $completa[1][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-mascota" type="text" size="10" value="<?php echo $completa[MEDIA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-media-mascota" type="text" size="10" value="<?php echo $completa[1][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. alta</td>
|
<td width="20%" valign="middle" bgcolor="#DCDCB8" class="textoNegrita">Temp. alta</td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-hotel" type="text" size="10" value="<?php echo $completa[ALTA][HOTEL]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-hotel" type="text" size="10" value="<?php echo $completa[2][HOTEL]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cama" type="text" size="10" value="<?php echo $completa[ALTA][CAMA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cama" type="text" size="10" value="<?php echo $completa[2][CAMA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-desayuno" type="text" size="10" value="<?php echo $completa[ALTA][DESAYUNO]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-desayuno" type="text" size="10" value="<?php echo $completa[2][DESAYUNO]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cocina" type="text" size="10" value="<?php echo $completa[ALTA][COCINA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cocina" type="text" size="10" value="<?php echo $completa[2][COCINA]; ?>"></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cuna" type="text" size="10" value="<?php echo $completa[ALTA][CUNA]; ?>"></td >
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-cuna" type="text" size="10" value="<?php echo $completa[2][CUNA]; ?>"></td >
|
||||||
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-mascota" type="text" size="10" value="<?php echo $completa[ALTA][MASCOTA]; ?>"></td>
|
<td bgcolor="#EEEEDB" class="texto"><input name="completa-alta-mascota" type="text" size="10" value="<?php echo $completa[2][MASCOTA]; ?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br/>
|
<br/>
|
||||||
<table width="100%" border="0" cellpadding="5" cellspacing="2" >
|
<table width="100%" border="0" cellpadding="5" cellspacing="2" >
|
||||||
<tr>
|
<tr>
|
||||||
<td width="33%" align="center"><input type="submit" value="Previsualizar los cambios" onClick="javascript:window.open('', 'Previsualizar', 'height=500,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar';" /></td>
|
<td width="33%" align="center"><input type="submit" value="Previsualizar versión en castellano" onClick="javascript:window.open('', 'Previsualizar', 'width=800,height=700,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar_castellano';" /><br/><input type="submit" value="Previsualizar versión en inglés" onClick="javascript:window.open('', 'Previsualizar', 'width=800,height=700,scrollbars=yes,resizable=yes');form.target='Previsualizar';form.accion.value='previsualizar_ingles';" /></td>
|
||||||
<td width="33%" align="center"><input type=submit value="Guardar los cambios" onClick="javascript:form.target='_self';form.accion.value='guardar'" /></td>
|
<td width="33%" align="center"><input type=submit value="Guardar los cambios" onClick="javascript:form.target='_self';form.accion.value='guardar'" /></td>
|
||||||
<td width="33%" align="center"><input type="button" value="Salir sin guardar" onClick="location.href='index.htm'"/></td>
|
<td width="33%" align="center"><input type="button" value="Salir sin guardar" onClick="location.href='index.htm'"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
1
privado/tarifas_previsualizar.dat
Normal file
1
privado/tarifas_previsualizar.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
a:2:{s:9:"GENERALES";a:3:{i:0;a:5:{s:10:"INDIVIDUAL";s:4:"55 €";s:5:"DOBLE";s:4:"65 €";s:4:"CAMA";s:4:"17 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:1;a:5:{s:10:"INDIVIDUAL";s:4:"67 €";s:5:"DOBLE";s:4:"79 €";s:4:"CAMA";s:4:"22 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:2;a:5:{s:10:"INDIVIDUAL";s:4:"83 €";s:5:"DOBLE";s:4:"96 €";s:4:"CAMA";s:4:"26 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}}s:8:"COMPLETA";a:3:{i:0;a:6:{s:5:"HOTEL";s:5:"392 €";s:4:"CAMA";s:4:"17 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}i:1;a:6:{s:5:"HOTEL";s:5:"495 €";s:4:"CAMA";s:4:"22 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"1 €";s:7:"MASCOTA";s:3:"0 €";}i:2;a:6:{s:5:"HOTEL";s:5:"611 €";s:4:"CAMA";s:4:"26 €";s:8:"DESAYUNO";s:3:"6 €";s:6:"COCINA";s:4:"12 €";s:4:"CUNA";s:3:"0 €";s:7:"MASCOTA";s:3:"0 €";}}}
|
||||||
1
privado/temporadas.dat
Normal file
1
privado/temporadas.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
a:6:{s:8:"BAJA_CAS";s:23:"16 septiembre - 31 mayo";s:8:"BAJA_ENG";s:25:"September 16th - May 31st";s:9:"MEDIA_CAS";s:18:"1 junio - 14 julio";s:9:"MEDIA_ENG";s:20:"June 1st - July 14th";s:8:"ALTA_CAS";s:70:"15 julio - 15 septiembre + Semana Santa + Navidad + puentes nacionales";s:8:"ALTA_ENG";s:67:"July 15th - September 15th + Easter + Christmas + National holidays";}
|
||||||
1
privado/temporadas_previsualizar.dat
Normal file
1
privado/temporadas_previsualizar.dat
Normal file
@ -0,0 +1 @@
|
|||||||
|
a:6:{s:8:"BAJA_CAS";s:23:"16 septiembre - 31 mayo";s:8:"BAJA_ENG";s:25:"September 16th - May 31st";s:9:"MEDIA_CAS";s:18:"1 junio - 14 julio";s:9:"MEDIA_ENG";s:20:"June 1st - July 14th";s:8:"ALTA_CAS";s:70:"15 julio - 15 septiembre + Semana Santa + Navidad + puentes nacionales";s:8:"ALTA_ENG";s:67:"July 15th - September 15th + Easter + Christmas + National holidays";}
|
||||||
Reference in New Issue
Block a user