- 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,29 +66,48 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>·<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>
|
<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>
|
||||||
<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>
|
||||||
|
|
||||||
<p><span class="titulos1"><br>
|
<p><span class="titulos1"><br>
|
||||||
LODGING <br>
|
LODGING <br>
|
||||||
<br>
|
<br>
|
||||||
@ -99,8 +115,7 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
• <strong>Color TV</strong>, tea service and hairdryer available in all rooms.<br>
|
• <strong>Color TV</strong>, tea service and hairdryer available in all rooms.<br>
|
||||||
• One living-room with chimney, library and sun gallery.<br>
|
• One living-room with chimney, library and sun gallery.<br>
|
||||||
• Caring service for <strong>pets</strong> (please, consult previously if you want to bring yours).<br>
|
• Caring service for <strong>pets</strong> (please, consult previously if you want to bring yours).<br>
|
||||||
• <strong>Private parking. </strong></span>
|
• <strong>Private parking. </strong></span> <br>
|
||||||
<br>
|
|
||||||
<span class="texto">• <strong>Wireless Internet connection available.</strong></span></p>
|
<span class="texto">• <strong>Wireless Internet connection available.</strong></span></p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
@ -115,25 +130,24 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="53%" align="left" valign="top">
|
<td width="53%" align="left" valign="top"><p class="titulos4">Services<span class="texto"><br>
|
||||||
<p class="titulos4">Services<span class="texto"><br>
|
|
||||||
<br>
|
<br>
|
||||||
• Season's menu for lunch or dinners, we offer also a cold meals - snacks menu during all the year.<br>
|
• Season's menu for lunch or dinners, we offer also a cold meals - snacks menu during all the year.<br>
|
||||||
• We serve suppers and foods under demand.<br>
|
• We serve suppers and foods under demand.<br>
|
||||||
• We can prepare lunch-boxes for excursions.<br>
|
• We can prepare lunch-boxes for excursions.<br>
|
||||||
• We organize events and meetings .</span><br>
|
• We organize events and meetings .</span><br>
|
||||||
<p><a href="mailto:info@villadepalacios.com"><br>
|
<p><a href="mailto:info@villadepalacios.com"><br>
|
||||||
</a></span></p></td>
|
</a></p></td>
|
||||||
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<td width="46%" align="left" valign="top"><span class="titulos4"><span class="link">Active tourism</span><span class="menu2"><span class="titulos1"></span></span></span> <span class="texto"><br>
|
<td width="46%" align="left" valign="top"><span class="titulos4"><span class="link">Active tourism</span><span class="menu2"><span class="titulos1"></span></span></span> <span class="texto"><br>
|
||||||
<br>
|
<br>
|
||||||
We can contact with different local companies to organize active tourism activities:<br>
|
We can contact with different local companies to organize active tourism activities:<br>
|
||||||
<br>
|
<br>
|
||||||
• <strong>Sports</strong>: <br>
|
• <strong>Sports</strong>: <br>
|
||||||
Quads, horse-riding, kayak, rafting, cave visiting, trekking, etc.<br>
|
Quads, horse-riding, kayak, rafting, cave visiting, trekking, etc.<br>
|
||||||
<br>
|
<br>
|
||||||
• <strong>Culture</strong>: <br>
|
• <strong>Culture</strong>: <br>
|
||||||
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>
|
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>
|
||||||
</span></td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -145,13 +159,11 @@ Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), preh
|
|||||||
<br>
|
<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>
|
</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>
|
||||||
</span>
|
</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="49%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
|
||||||
<td width="25%" align="center">
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"></div></td>
|
||||||
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
|
|
||||||
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
<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></td>
|
</table></td>
|
||||||
@ -169,31 +181,28 @@ Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), preh
|
|||||||
</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 align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"> </td>
|
<td align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<td align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
<td align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div> </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="justify"><span class="texto"><strong class="titulos3"><br>
|
<td><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
</strong>
|
</strong> <strong class="titulos3">3. The Rooster</strong><br>
|
||||||
<strong class="titulos3">3. The Rooster</strong><br>
|
|
||||||
<br>
|
<br>
|
||||||
The orange room. It's oriented to the South , possesses two balconies of forge that give exit to an long terrace. To the entrance of the room there is a distributor framed by a mortar's arch recovered from the time of construction of the house. <br>
|
The orange room. It's oriented to the South , possesses two balconies of forge that give exit to an long terrace. To the entrance of the room there is a distributor framed by a mortar's arch recovered from the time of construction of the house. <br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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">
|
<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>
|
||||||
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
|
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210" hspace="2"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -204,34 +213,30 @@ Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), preh
|
|||||||
<br>
|
<br>
|
||||||
The lilac room. It is oriented to two facades. To the South the view of the mountain, and at the West the farm and the orange's tree with it's fragrance. It has a bath with a great round bathtub and a balcony of forge.<br>
|
The lilac room. It is oriented to two facades. To the South the view of the mountain, and at the West the farm and the orange's tree with it's fragrance. It has a bath with a great round bathtub and a balcony of forge.<br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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">
|
<td width="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
|
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210" hspace="2"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
<td><div align="justify"><font color="#FFFFFF"><span class="texto"><strong class="titulos3"><br>
|
||||||
</strong>
|
</strong> <strong class="titulos3">5. The Pig</strong><br>
|
||||||
<strong class="titulos3">5. The Pig</strong><br>
|
|
||||||
<br>
|
<br>
|
||||||
The green room. It is a room located in the annex wing where the old kitchens were. It's oriented to two facades. The high ceilings have permitted to build a mezzanine with two beds where the children love to sleep and play. <br>
|
The green room. It is a room located in the annex wing where the old kitchens were. It's oriented to two facades. The high ceilings have permitted to build a mezzanine with two beds where the children love to sleep and play. <br>
|
||||||
<br>
|
<br>
|
||||||
</span></font>
|
</span></font></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"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></font></div></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210" hspace="2"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -242,31 +247,28 @@ Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), preh
|
|||||||
<br>
|
<br>
|
||||||
The ocher room. It is oriented to two facades. At the East, the main facade possesses a small terrace of geraniums with an inscription in stone from the year of construction of the casona (1871). From this terrace you can view the valley and the Virgen de Palacios' hermitage, to the North it has nice views of the mountain. <br>
|
The ocher room. It is oriented to two facades. At the East, the main facade possesses a small terrace of geraniums with an inscription in stone from the year of construction of the casona (1871). From this terrace you can view the valley and the Virgen de Palacios' hermitage, to the North it has nice views of the mountain. <br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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"> <img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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 valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
<td valign="top"><div align="justify"><span class="texto"><strong class="titulos3"><br>
|
||||||
</strong>
|
</strong> <strong class="titulos3">7. The Goat</strong><br>
|
||||||
<strong class="titulos3">7. The Goat</strong><br>
|
|
||||||
<br>
|
<br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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"> <img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -278,31 +280,39 @@ Visit the Natural Reserve of Santoña's salt marsh (bird's sighting), preh
|
|||||||
<tr>
|
<tr>
|
||||||
<td><div align="left" class="texto">
|
<td><div align="left" class="texto">
|
||||||
<div align="justify"><strong class="titulos3"><br>
|
<div align="justify"><strong class="titulos3"><br>
|
||||||
</strong>
|
</strong> <strong class="titulos3">8. The Horse</strong><br>
|
||||||
<strong class="titulos3">8. The Horse</strong><br>
|
|
||||||
<br>
|
<br>
|
||||||
The yellow room, situated in the low plant, has a very functional use, therefore is thought for persons with reduced mobility. It has an extensive forge window that looks just to the main entrance. The door of entrance gives to the hall and to the parlor, with a ramp for easier access. The bath, very extensive, is also prepared for this function.<br>
|
The yellow room, situated in the low plant, has a very functional use, therefore is thought for persons with reduced mobility. It has an extensive forge window that looks just to the main entrance. The door of entrance gives to the hall and to the parlor, with a ramp for easier access. The bath, very extensive, is also prepared for this function.<br>
|
||||||
<br>
|
<br>
|
||||||
</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 align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
|
<td align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"></td>
|
||||||
<td align="center">
|
<td align="center"><div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
||||||
<div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
|
||||||
<td align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
<td align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div> </td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></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,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,67 +58,82 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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> ·<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>
|
<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>
|
||||||
<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>
|
||||||
|
|
||||||
<span><span class="titulos1"> THE REGION: ASÓN-AGÜERA </span></span><br>
|
<span><span class="titulos1"> THE REGION: ASÓN-AGÜERA </span></span><br>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="2" valign="top" class="texto">
|
<td rowspan="2" valign="top" class="texto"><p align="justify" class="texto">
|
||||||
<p align="justify" class="texto"><span class="texto"><em class="titulos3">La villa de Palacios</em> is placed in the northern region of Asón-Agüera, midway between the mountain and the sea.<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>
|
||||||
<br>
|
<br>
|
||||||
<span class="titulos4"> The mountain</span><br>
|
<span class="titulos4"> The mountain</span><br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
<span class="titulos4">The sea</span> <br>
|
<span class="titulos4">The sea</span> <br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
<span class="titulos4">Prehistoric Art</span><br>
|
<span class="titulos4">Prehistoric Art</span><br>
|
||||||
Cantabria hoards in its subsoil one of the greater concentrations of caves with art rupestre in Europe. Till today about 50 deposits have been confirmed, but recent discoveries permit to think that this census can grow in the future.<br>
|
Cantabria hoards in its subsoil one of the greater concentrations of caves with art rupestre in Europe. Till today about 50 deposits have been confirmed, but recent discoveries permit to think that this census can grow in the future.<br>
|
||||||
Paying a visit to any of these deposits that are found at few kilometers from our Casona is a perfect activity when the weather is harsh. <br>
|
Paying a visit to any of these deposits that are found at few kilometers from our Casona is a perfect activity when the weather is harsh. <br>
|
||||||
<br>
|
<br>
|
||||||
<span class="titulos4">Cities & culture</span><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>
|
Our Casona is found half distance of Santander and Bilbao. In about 45 minutes you will be in the center of any of these cities and will be able to enjoy the great cultural offering that both have to offer.<br>
|
||||||
<br>
|
<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>
|
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>
|
||||||
<span class="credits"><strong>Guggenheim-Bilbao Museum</strong></span></p>
|
<span class="credits"><strong>Guggenheim-Bilbao Museum</strong></span></p>
|
||||||
</span>
|
</span>
|
||||||
<p><span class="texto">
|
<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>
|
||||||
In <strong>Santander</strong> you can visit the Prehistory and Archeology Museum, the Nautic Museum , besides the Fine Arts Museum, and the Maritim Museum of Cantabric. <br>
|
|
||||||
Outside, but not far from Santander we recommend to visit the Altamira's Museum of Santillana, the Nature's Museum in Cabezón de la Sal, and the National Park of Cabárceno, plenty of wild and exotic species in complete freedom.</span></p>
|
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>
|
||||||
<p><img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
<p><img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
||||||
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
<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>
|
<td width="10" rowspan="2" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<td width="220" valign="top">
|
<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>
|
||||||
<div align="right">
|
<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>
|
</span> <img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
<br>
|
A perfect place for the practice of trekking. </span><span class="credits"></span><br/>
|
||||||
</span>
|
<br/>
|
||||||
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
|
||||||
A perfect place for the practice of trekking.
|
|
||||||
</span><span class="credits"><strong></strong></span><br/><br/>
|
|
||||||
|
|
||||||
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
||||||
<span class="credits"><strong>Laredo</strong> (with Santoña) <br>
|
<span class="credits"><strong>Laredo</strong> (with Santoña) <br>
|
||||||
<br>
|
<br>
|
||||||
@ -129,31 +141,38 @@ In <strong>Bilbao</strong> you can find the famous <a href="http://www.guggenhei
|
|||||||
<span class="credits"><strong>Covalanas</strong><br>
|
<span class="credits"><strong>Covalanas</strong><br>
|
||||||
<br>
|
<br>
|
||||||
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
Fisher's port of<strong> Colindres</strong>.<br>
|
Fisher's port of<strong> Colindres</strong>.<br>
|
||||||
</span><br>
|
</span><br>
|
||||||
|
</div></td>
|
||||||
</div> </td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">
|
<td valign="top"><div align="right">
|
||||||
<div align="right">
|
|
||||||
<p><span class="titulos3"><strong><br>
|
<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>
|
<font size="2" face="Verdana">Some useful web-site</font></strong><font size="2" face="Verdana">s</font><br>
|
||||||
</span></span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<br>
|
</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.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.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
|
||||||
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
|
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita"> www.cantabria.com</a><br>
|
||||||
www.cantabria.com</a><br>
|
|
||||||
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<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,52 +65,70 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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> ·<span class="menu2">Reserves & Contact </span>·<a href="tarifas_eng.htm" class="menu">Prices </a></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> ·<span class="menu2">Reserves & Contact </span>·<a href="tarifas_eng.htm" class="menu">Prices </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="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>
|
||||||
|
|
||||||
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
||||||
</a><span class="titulos1">
|
</a><span class="titulos1"> RESERVES & CONTACT </span></span><br>
|
||||||
RESERVES & CONTACT </span></span><br>
|
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td width="42%" class="texto"><p>To make a reservation or receive more information, please do not hesitate to contact us by phone <br>
|
<td width="42%" class="texto"><p>To make a reservation or receive more information, please do not hesitate to contact us by phone <br>
|
||||||
or e-mail.<br>
|
or e-mail.<br>
|
||||||
<span><br>
|
<span><br>
|
||||||
<a href="mailto:info@villadepalacios.com" class="titulos3">
|
<a href="mailto:info@villadepalacios.com" class="titulos3"> info@villadepalacios.com</a><br>
|
||||||
info@villadepalacios.com</a><br>
|
|
||||||
<br>
|
<br>
|
||||||
</span><span class="titulos3">Barrio Palacios 150<br>
|
</span><span class="titulos3">Barrio Palacios 150<br>
|
||||||
San Miguel de Aras. Voto <br>
|
San Miguel de Aras. Voto <br>
|
||||||
39766 - Cantabria<br>
|
39766 - Cantabria<br>
|
||||||
<br>
|
<br>
|
||||||
Tel. 942 679 150 <br>
|
Tel. +34 942 679 150 <br>
|
||||||
Mov. 627 030 030 <br>
|
Fax. +34 942 679 241 <br>
|
||||||
|
Mov. 627 030 030 <br>
|
||||||
</span></p>
|
</span></p>
|
||||||
<p align="left"><span class="puntitos"><strong>To reach the hotel:</strong><br>
|
<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>
|
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></blockquote></p> </td>
|
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">
|
<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>
|
<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>
|
</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>
|
</span><span class="credits">Click on the image to get a larger view and print.</span></p>
|
||||||
@ -122,12 +137,22 @@ Go in direction <em>Treto</em> and soon you will see indications to SAN MIGUEL D
|
|||||||
</table>
|
</table>
|
||||||
<p align="center"><span class="titulos4">G.P.S. Coordinates</span><br>
|
<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>
|
<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>
|
<strong>Latitude: </strong>N43 degrees 19 minutes 52 seconds.</p></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>
|
||||||
|
|||||||
@ -112,7 +112,15 @@ body {
|
|||||||
</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" >
|
||||||
|
<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>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@ -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,42 +70,59 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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> ·<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="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="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>
|
||||||
|
|
||||||
<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">
|
||||||
@ -129,12 +143,12 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<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> <br>
|
</table>
|
||||||
|
<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">
|
||||||
@ -155,12 +169,12 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<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> <br>
|
</table>
|
||||||
|
<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">
|
||||||
@ -186,12 +200,22 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<br>
|
<br>
|
||||||
</span></p></td>
|
</span></p></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
|
||||||
@ -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,50 +86,66 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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"><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="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="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>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="33%" valign="bottom"><span><span class="titulos1"> </span><span><span class="titulos1">WELCOME</span></span><span class="titulos1"> </span></span>
|
<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>
|
||||||
<span class="titulos3 style13"></span></td>
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<span></span><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 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="48%" valign="top" class="texto"><div align="justify"><strong class="titulos3">La Villa de Palacios</strong> hotel, placed near Laredo, is the perfect destine for your holidays thanks to its placement in the privileged lands of the Voto's manor. Surroundend by nice mountains, leafy woods and just 15 minutes from the beach. <br>
|
||||||
<br>
|
<br>
|
||||||
It's also well communicated and full of leisure posibilities, at 40 minutes form the main towns of <strong>Bilbao</strong> (location of the famed <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita"><u>Guggenhaim Museum</u></a>) and <strong>Santander</strong>. <br>
|
It's also well communicated and full of leisure posibilities, at 40 minutes form the main towns of <strong>Bilbao</strong> (location of the famed <a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="textoNegrita"><u>Guggenhaim Museum</u></a>) and <strong>Santander</strong>. <br>
|
||||||
<br>
|
<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>
|
<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>
|
||||||
<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>
|
<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>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td width="52%" height="289" valign="middle"> <div align="right">
|
<td width="52%" height="289" valign="middle"><div align="right">
|
||||||
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
||||||
<span class="titulos4"><br>
|
<span class="titulos4"><br>
|
||||||
Welcome to the Villa de Palacios***</span><br>
|
Welcome to the Villa de Palacios***</span><br>
|
||||||
@ -142,23 +155,33 @@ It's also well communicated and full of leisure posibilities, at 40 minutes form
|
|||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td height="108" colspan="2" class="texto"> <br>
|
<td height="108" colspan="2" class="texto"><br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
|
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
|
||||||
<td width="65%" valign="top" class="texto"><span class="palacios">La Villa de Palacios holds the category of <em>"Casonas (country hotels) and Palaces of Cantabria"</em> the clasification for rural establishments that list the buildings of special architectural values.<br>
|
<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>
|
||||||
<br>
|
<br>
|
||||||
Outside and inside, decoration and furniture correspond in quality and comfort to the level of a tradicional palace. Casonas and Palacios must maintain standars at least equivalent to any 3 stars hotel.</span><a href="http://www.calidadcantabria.com" target="_blank" class="titulos3"><br>
|
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>
|
www.calidadcantabria.com</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></td>
|
</table></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>
|
||||||
|
|||||||
@ -32,5 +32,10 @@
|
|||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -73,5 +73,10 @@ body {
|
|||||||
</div></td>
|
</div></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">
|
||||||
<!--
|
<!--
|
||||||
.style12 { line-height: normal;
|
.style12 { line-height: normal;
|
||||||
@ -59,7 +56,6 @@ function MM_preloadImages() { //v3.0
|
|||||||
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
|
.style16 {font-size: 12px; font-style: normal; line-height: normal; font-variant: normal; color: #333333; text-decoration: none; font-family: Verdana;}
|
||||||
-->
|
-->
|
||||||
</style>
|
</style>
|
||||||
<!-- InstanceEndEditable -->
|
|
||||||
<script language="JavaScript" type="text/JavaScript">
|
<script language="JavaScript" type="text/JavaScript">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -80,19 +76,17 @@ 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">
|
||||||
<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><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">
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
||||||
</object>
|
</object>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="right" bgcolor="#333333" class="menu"><a href="home_eng.htm" class="menu">Presentation</a> <a href="galeria_eng.htm" class="menu">Images</a> <a href="alojamiento_eng.htm" class="menu">Rooms</a> <a href="tarifas_eng.htm" class="menu2">Prices</a> <a href="cantabria_eng.htm" class="menu">The region </a> <a href="contacto_eng.htm" class="menu">Reserves & Contact</a> </td>
|
<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>
|
||||||
<td width="10" bgcolor="#333333"> </td>
|
<td width="10" bgcolor="#333333"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -105,48 +99,37 @@ body {
|
|||||||
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
||||||
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
||||||
<td width="26%" bgcolor="#DCDCB8"> </td>
|
<td width="26%" bgcolor="#DCDCB8"> </td>
|
||||||
<td width="20%">
|
<td width="20%"><div align="center">
|
||||||
<div align="center">
|
|
||||||
<p class="titulos3"><strong>Single</strong></p>
|
<p class="titulos3"><strong>Single</strong></p>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td width="20%">
|
<td width="20%"><div align="center" class="titulos3">Double</div></td>
|
||||||
<div align="center" class="titulos3">Double</div></td>
|
<td width="20%"><div align="center" class="texto">Added bed </div></td>
|
||||||
<td width="20%">
|
|
||||||
<div align="center" class="texto">Added bed </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 height="2" align="left" bgcolor="#DCDCB8" class="textoNegrita"><strong class="titulos3"> Low season </strong><br>
|
||||||
<span class="texto">(1 October - 1 Juny)</span></td>
|
<span class="texto">(1 October - 1 Juny)</span></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">50 € </div></td>
|
||||||
<div align="center">50 € </div></td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
|
||||||
<div align="center">
|
|
||||||
<p class="texto">58 €</p>
|
<p class="texto">58 €</p>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">16 €</div></td>
|
||||||
<div align="center" class="texto">16 €</div></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle">
|
<tr align="center" valign="middle">
|
||||||
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
|
<td align="left" bgcolor="#DCDCB8" class="titulos3"> Medium season <br>
|
||||||
<span class="texto">(1- Juny - 15 July | 15 - 30 September)</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" class="texto">62 € </div></td>
|
|
||||||
<td bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">72 € </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" class="texto">21 €</div></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle">
|
<tr align="center" valign="middle">
|
||||||
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
|
<td height="2" align="left" bgcolor="#DCDCB8" class="titulos3"> High season <br>
|
||||||
<span class="texto">(15 July - 15 September <br>
|
<span class="texto">(15 July - 15 September <br>
|
||||||
+ Easter <br>
|
+ Easter <br>
|
||||||
+ Christmas <br>
|
+ Christmas <br>
|
||||||
+ National holidays )</span> </td>
|
+ National holidays )</span></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">76 € </div></td>
|
||||||
<div align="center">76 € </div></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">88 € </div></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">25 €</div></td>
|
||||||
<div align="center">88 € </div></td>
|
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
|
||||||
<div align="center">25 €</div></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle">
|
<tr align="center" valign="middle">
|
||||||
<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 height="2" colspan="4" align="left" bgcolor="#FFFFFF" class="titulos3"><a href="contacto_esp.htm" class="textoNegrita">>> Información y reservas</a></td>
|
||||||
@ -157,58 +140,49 @@ body {
|
|||||||
<br>
|
<br>
|
||||||
For groups, family celebrations, seminars and profesional activities, this mode means the right to reserve the entire hotel in exclusive. Not valid during August. <br>
|
For groups, family celebrations, seminars and profesional activities, this mode means the right to reserve the entire hotel in exclusive. Not valid during August. <br>
|
||||||
<br>
|
<br>
|
||||||
</span><table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
</span>
|
||||||
|
<table width="660" border="0" align="center" cellpadding="6" cellspacing="4" bordercolor="#FFFFFF">
|
||||||
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
<tr align="center" valign="top" bgcolor="#DCDCB8">
|
||||||
<td width="21%">
|
<td width="21%"><div align="center">
|
||||||
<div align="center">
|
|
||||||
<p class="textoNegrita"> </p>
|
<p class="textoNegrita"> </p>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
|
<td width="18%"><p><span class="textoNegrita"><span class="texto"><strong class="titulos3">Whole hotel</strong> <br>
|
||||||
(each night) </span></span></p></td>
|
(each night) </span></span></p></td>
|
||||||
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
|
<td width="18%" class="textoNegrita"><div align="center" class="texto">Added bed </div></td>
|
||||||
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
|
<td width="18%" class="textoNegrita"><span class="texto"><strong>Breakfast surplus </strong><br>
|
||||||
(each person)</span></td>
|
(each person)</span></td>
|
||||||
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
|
<td width="18%"><span class="textoNegrita"> Surplus for kitchen use <br>
|
||||||
</span><span class="style16">(optional) </span></td>
|
</span><span class="style16">(optional) </span></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="textoNegrita"><span class="texto"><strong class="titulos3">Low season </strong><br>
|
||||||
(1 October - 30 June)</span></td>
|
(1 October - 30 June)</span></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center"><strong>373</strong> <strong>€ </strong></div></td>
|
||||||
<div align="center"><strong>373</strong> <strong>€ </strong></div></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">16 €</div></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
|
||||||
<div align="center">16 €</div></td>
|
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">10 €</div></td>
|
||||||
<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="titulos3"><span class="texto">Medium Season <br>
|
<td align="left" valign="middle" class="titulos3"><span class="texto">Medium Season <br>
|
||||||
(1- 15 July | <br>
|
(1- 15 July | <br>
|
||||||
1 -30 September)</span></td>
|
1 -30 September)</span></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center"><strong>471</strong> <strong>€</strong></div></td>
|
||||||
<div align="center"><strong>471</strong> <strong>€</strong> </div></td>
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">21 €</div></td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
|
||||||
<div align="center">21 €</div></td>
|
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
<td height="2" bgcolor="#EEEEDB" class="texto">
|
<td height="2" bgcolor="#EEEEDB" class="texto"><div align="center">10 €</div></td>
|
||||||
<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="menu2"><span class="texto">High season <br>
|
<td align="left" valign="middle" class="menu2"><span class="texto">High season <br>
|
||||||
(16 July-31 August <br>
|
(16 July-31 August <br>
|
||||||
+ Easter <br>
|
+ Easter <br>
|
||||||
+ Christmas <br>
|
+ Christmas <br>
|
||||||
+ National holidays) </span></td>
|
+ National holidays) </span></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
<td bgcolor="#EEEEDB" class="texto"><div align="center"><strong>582</strong> <strong>€</strong></div></td>
|
||||||
<div align="center"><strong>582</strong> <strong>€</strong> </div></td>
|
<td bgcolor="#EEEEDB" class="texto"><div align="center">
|
||||||
<td bgcolor="#EEEEDB" class="texto">
|
|
||||||
<div align="center">
|
|
||||||
<p class="texto">25 €</p>
|
<p class="texto">25 €</p>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
<td bgcolor="#EEEEDB" class="texto">5,60 €</td>
|
||||||
<td height="89" bgcolor="#EEEEDB" class="texto">
|
<td height="89" bgcolor="#EEEEDB" class="texto"><div align="center" class="texto">10 €</div></td>
|
||||||
<div align="center" class="texto">10 €</div></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
<tr align="center" valign="middle" bgcolor="#DCDCB8">
|
||||||
<td height="26" colspan="6" align="left" valign="middle" bgcolor="#FFFFFF"><span class="texto"><a href="contacto_eng.htm" class="textoNegrita">>> Information and reserves</a></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>
|
||||||
@ -216,13 +190,24 @@ body {
|
|||||||
</table>
|
</table>
|
||||||
<span class="texto"><br>
|
<span class="texto"><br>
|
||||||
• In High and Medium seasons, minimun stances are 2 nights.<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>
|
• 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>
|
• If you want to bring your pet, please ask previously. <br>
|
||||||
<strong>(7% VAT not included)</strong></span><!-- InstanceEndEditable --></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>
|
||||||
<!-- InstanceEnd --></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>
|
|
||||||
<noscript>
|
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>
|
</object>
|
||||||
</noscript>
|
<!--<![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,30 +67,49 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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="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>·<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="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="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>
|
||||||
<p><span class="titulos1">
|
<p><span class="titulos1"> <br>
|
||||||
<br>
|
|
||||||
ALOJAMIENTO <br>
|
ALOJAMIENTO <br>
|
||||||
<br>
|
<br>
|
||||||
</span><span class="texto">•<strong> Ocho habitaciones</strong> dobles con baño y vistas;
|
</span><span class="texto">•<strong> Ocho habitaciones</strong> dobles con baño y vistas;
|
||||||
@ -101,24 +117,25 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
• <strong>Televisión</strong>, servicio
|
• <strong>Televisión</strong>, servicio
|
||||||
de té y secador en todas las habitaciones.<br>
|
de té y secador en todas las habitaciones.<br>
|
||||||
• Un salón con chimenea, una sala de lectura y solana. <br>
|
• Un salón con chimenea, una sala de lectura y solana. <br>
|
||||||
• Servicio de guardería para <strong>animales</strong>
|
• Servicio de guardería para <strong>animales</strong> (consulte previamente si desea traer a su mascota).<br>
|
||||||
(consulte previamente si desea traer a su mascota).<br>
|
|
||||||
• <strong>Aparcamiento propio</strong>.</span><br>
|
• <strong>Aparcamiento propio</strong>.</span><br>
|
||||||
<span class="titulos4"><span class="texto">• <strong>Conexión inalámbrica a internet.</strong></span></span></p>
|
<span class="titulos4"><span class="texto">• <strong>Conexión inalámbrica a internet.</strong></span></span></p>
|
||||||
<p align="center"><span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span></p>
|
<p align="center"><span class="titulos4"><img src="../img_nav/wifi-logo[1].jpg" alt="Acceso a inernet por Wi-fi" width="60" height="27"></span></p>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="53%" align="left" valign="top">
|
<td width="53%" align="left" valign="top"><p class="titulos4">Servicios <span class="texto"> <br>
|
||||||
<p class="titulos4">Servicios
|
|
||||||
<span class="texto"> <br>
|
|
||||||
<br>
|
<br>
|
||||||
• Disponemos de habitaciones especiales para personas
|
• Disponemos de habitaciones especiales para personas
|
||||||
con problemas de movilidad.<br>
|
con problemas de movilidad.<br>
|
||||||
• Servicio de comedor: menú de temporada o
|
• Servicio de comedor: menú de temporada, carta de
|
||||||
por encargo (* consultar tarifas), carta de
|
|
||||||
picoteo y bolsa de picnic.<br>
|
picoteo y bolsa de picnic.<br>
|
||||||
• Bar de uso exclusivo para nuestros huéspedes.<br>
|
• Bar de uso exclusivo para nuestros huéspedes.<br>
|
||||||
• Consulte nuestras promociones. </span></td>
|
</span><span class="texto">• Aceptamos mascotas. Consultar previamente.</span>
|
||||||
|
<br>
|
||||||
|
<span class="texto">• Disponemos de barbacoa.<br>
|
||||||
|
</span><span class="texto">• Tarifas especiales para:<br>
|
||||||
|
- Ocupación completa de la Casona con posibilidad de uso de cocina.<br>
|
||||||
|
- Empresas, grupos y eventos.</span><span class="texto"> </span></td>
|
||||||
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
<td width="1%" align="left" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<td width="46%" align="left" valign="top"><span class="titulos4">Actividades</span> <span class="texto"><br>
|
<td width="46%" align="left" valign="top"><span class="titulos4">Actividades</span> <span class="texto"><br>
|
||||||
<br>
|
<br>
|
||||||
@ -126,18 +143,18 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
empresas de la comarca (la oferta varía según
|
empresas de la comarca (la oferta varía según
|
||||||
temporada) para organizar actividades:<br>
|
temporada) para organizar actividades:<br>
|
||||||
<br>
|
<br>
|
||||||
•</span><span class="textoNegrita"> Deportivas</span><span class="texto">: <br>
|
•</span><span class="textoNegrita"> Deportivas</span><span class="texto">: <br>
|
||||||
Quads, paseos a caballo, piragüismo, rafting,
|
Quads, paseos a caballo, piragüismo, rafting,
|
||||||
ía, senderismo.<br>
|
ía, senderismo.<br>
|
||||||
<br>
|
<br>
|
||||||
• </span><span class="textoNegrita">Culturales</span><span class="texto">: <br>
|
• </span><span class="textoNegrita">Culturales</span><span class="texto">: <br>
|
||||||
Visitas a la Reserva
|
Visitas a la Reserva
|
||||||
Natural de las Marismas de Santoña (observación
|
Natural de las Marismas de Santoña (observación
|
||||||
de aves), arte rupestre, románico, observación
|
de aves), arte rupestre, románico, observación
|
||||||
de la naturaleza, paseos en barco por la Bahía
|
de la naturaleza, paseos en barco por la Bahía
|
||||||
de Santoña, etc.<br>
|
de Santoña, etc.<br>
|
||||||
</span>
|
</span>
|
||||||
</p></td>
|
<p></p></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<span class="titulos4">Las habitaciones </span><br>
|
<span class="titulos4">Las habitaciones </span><br>
|
||||||
@ -148,13 +165,11 @@ Visitas a la Reserva
|
|||||||
</strong></span><strong><span class="texto"><br>
|
</strong></span><strong><span class="texto"><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></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>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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="49%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/vaca_nueva.jpg" width="280" height="210"></td>
|
||||||
<td width="25%" align="center">
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"></div></td>
|
||||||
<div align="left"><img src="../img_nav/habitaciones/vaca_det.JPG" width="157" height="210"> </div></td>
|
|
||||||
<td width="26%" align="center" valign="top"><img src="../img_nav/habitaciones/vaca_det4.jpg" width="157" height="210" hspace="0"></td>
|
<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></td>
|
</table></td>
|
||||||
@ -172,11 +187,11 @@ Visitas a la Reserva
|
|||||||
</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" class="menu"><img src="../img_nav/habitaciones/conejo_nueva.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/conejo_nueva2.jpg" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div> </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>
|
||||||
@ -187,15 +202,13 @@ Visitas a la Reserva
|
|||||||
<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 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>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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">
|
<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>
|
||||||
<div class="texto"><img src="../img_nav/habitaciones/gallo.JPG" width="280" height="210" hspace="2"></div></td>
|
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gallo_det.JPG" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -206,15 +219,13 @@ Visitas a la Reserva
|
|||||||
</strong><br>
|
</strong><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>
|
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>
|
</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">
|
<td width="50%" align="center" valign="top" class="menu"><img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<img src="../img_nav/habitaciones/gato.JPG" width="280" height="210" hspace="2"></div></td>
|
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/gato_det.JPG" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -225,14 +236,13 @@ Visitas a la Reserva
|
|||||||
<br>
|
<br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
</span></font>
|
</span></font></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"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></font></div></td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/chon_det1.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210"></td>
|
<td width="50%" align="center"><img src="../img_nav/habitaciones/chon2.JPG" width="280" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -243,16 +253,14 @@ Visitas a la Reserva
|
|||||||
<br>
|
<br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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"> </div>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
||||||
<img src="../img_nav/habitaciones/petirrojo.JPG" width="280" height="210" hspace="2"></td>
|
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/petirrojo_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/petirrojo_det.JPG" width="157" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -263,16 +271,14 @@ Visitas a la Reserva
|
|||||||
<br>
|
<br>
|
||||||
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>
|
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>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</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">
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></td>
|
||||||
<img src="../img_nav/habitaciones/cabra.jpg" width="280" height="210" hspace="2"></div></td>
|
|
||||||
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/cabra_nueva.jpg" width="157" height="210"></div></td>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/cabra_det.JPG" width="157" height="210" hspace="2"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table> </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>
|
||||||
@ -287,22 +293,34 @@ Visitas a la Reserva
|
|||||||
</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"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"> </td>
|
<td width="50%" align="center" valign="top"><img src="../img_nav/habitaciones/DSC_0021.JPG" width="313" height="210" hspace="2"></td>
|
||||||
<td width="25%" align="center"> <div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
<td width="25%" align="center"><div align="left"><img src="../img_nav/habitaciones/DSC_0045.JPG" width="141" height="210"></div></td>
|
||||||
<td width="25%" align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
<td width="25%" align="center"><img src="../img_nav/habitaciones/DSC_0029.JPG" width="141" height="210"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div> </td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</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,26 +72,46 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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="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> ·<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>
|
<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>
|
||||||
<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><a href="../detect_esp.htm"><br>
|
<span><a href="../detect_esp.htm"><br>
|
||||||
@ -102,16 +119,13 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="438" rowspan="2" valign="top" class="texto">
|
<td width="438" rowspan="2" valign="top" class="texto"><p align="justify" class="texto"><em class="titulos3">La
|
||||||
<p align="justify" class="texto"><em class="titulos3">La
|
Villa de Palacios</em> está situada en la comarca <strong>Asón-Agüera</strong>,<br/>
|
||||||
Villa de Palacios</em> está situada en la comarca
|
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/>
|
||||||
<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.
|
|
||||||
<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>
|
<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>
|
||||||
</span> <span class="titulos3 style18"><br>
|
</span> <span class="titulos3 style18"><br>
|
||||||
</span><span class="titulos4">La montaña</span><br>
|
</span><span class="titulos4">La montaña</span><br>
|
||||||
La comarca de <strong>Asón-Agüera</strong>
|
La comarca de <strong>Asón-Agüera</strong> es la más desconocida de Cantabria. La belleza
|
||||||
es la más desconocida de Cantabria. La belleza
|
|
||||||
indiscutible de sus paisajes, sendas y rutas hace de
|
indiscutible de sus paisajes, sendas y rutas hace de
|
||||||
este lugar un paraje ideal para el descanso y el disfrute
|
este lugar un paraje ideal para el descanso y el disfrute
|
||||||
de la naturaleza que alcanza su máximo esplendor
|
de la naturaleza que alcanza su máximo esplendor
|
||||||
@ -127,9 +141,8 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<br/>
|
<br/>
|
||||||
<span class="titulos4">Cuevas y arte rupestre</span><br>
|
<span class="titulos4">Cuevas y arte rupestre</span><br>
|
||||||
Nuestra comarca posee una gran concentración de cuevas por lo que es visitada por espeleólogos del mundo entero.
|
Nuestra comarca posee una gran concentración de cuevas por lo que es visitada por espeleólogos del mundo entero.
|
||||||
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.
|
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.
|
||||||
No obstante las famosas Cuevas de Altamira y El Soplao se encuentran a menos de una hora de trayecto desde nuestro hotel.
|
No obstante las famosas Cuevas de Altamira y El Soplao se encuentran a menos de una hora de trayecto desde nuestro hotel. <br>
|
||||||
<br>
|
|
||||||
<br>
|
<br>
|
||||||
<span class="titulos4">Ciudades</span><br>
|
<span class="titulos4">Ciudades</span><br>
|
||||||
Nuestra Casona se encuentra equidistante de Santander
|
Nuestra Casona se encuentra equidistante de Santander
|
||||||
@ -150,48 +163,52 @@ No obstante las famosas Cuevas de Altamira y El Soplao se encuentran a menos de
|
|||||||
<p><br>
|
<p><br>
|
||||||
<img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
<img src="../img_nav/Fotos/Santander.jpg" width="400" height="241"><br>
|
||||||
<span class="credits"><strong>Santander</strong></span><span class="titulos2"></span></p></td>
|
<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>
|
<td width="10" rowspan="2" valign="top"><img src="../img_nav/transp.gif" width="10" height="10"></td>
|
||||||
<td width="220" valign="top">
|
<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>
|
||||||
<div align="right">
|
|
||||||
<img src="../img_nav/Fotos/Valle%20de%20Aras.jpg" width="220" height="146"> <span class="credits">Vista del <strong>valle de Aras</strong>, con la casona <br>
|
|
||||||
a la izquierda.<br>
|
a la izquierda.<br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</span> <img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
<img src="../img_nav/paisaje7.jpg" width="220" height="146"><span class="credits"><br>
|
Una zona ideal para el senderismo.</span><br>
|
||||||
Una zona ideal para el senderismo.</span><br><br/>
|
<br/>
|
||||||
|
|
||||||
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
<img src="../img_nav/Fotos/Playa Laredo.jpg" width="220" height="165"><br>
|
||||||
<span class="credits"><strong>Laredo</strong> (Santoña al fondo).<br>
|
<span class="credits"><strong>Laredo</strong> (Santoña al fondo).<br>
|
||||||
<br></span>
|
<br>
|
||||||
<img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
</span> <img src="../img_nav/Fotos/Covalanas.jpg" width="220" height="152"><br>
|
||||||
<span class="credits"><strong>Covalanas</strong><br>
|
<span class="credits"><strong>Covalanas</strong><br>
|
||||||
<br>
|
<br>
|
||||||
</span>
|
</span> <img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
||||||
<img src="../img_nav/paisaje1.jpg" width="220" height="146"><span class="credits"><br>
|
|
||||||
Puerto pesquero de <strong>Colindres</strong>.<br>
|
Puerto pesquero de <strong>Colindres</strong>.<br>
|
||||||
</span><br>
|
</span><br>
|
||||||
</div> </td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">
|
<td valign="top"><div align="right">
|
||||||
<div align="right">
|
|
||||||
<p><span class="titulos3"><strong>A</strong>lgunas
|
<p><span class="titulos3"><strong>A</strong>lgunas
|
||||||
direcciones de interés</span><br>
|
direcciones de interés</span><br>
|
||||||
</span><a href="http://www.juntadevoto.com" target="_blank" class="textoNegrita">www.juntadevoto.com<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.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.cantabriajoven.com" target="_blank" class="textoNegrita">www.cantabriajoven.com<br>
|
||||||
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita">
|
</a><a href="http://www.cantabria.com" target="_blank" class="textoNegrita"> www.cantabria.com</a><br>
|
||||||
www.cantabria.com</a><br>
|
|
||||||
<a href="http://turismo.cantabria.org/%20" target="_blank" class="textoNegrita">www.turismo.cantabria.org<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,53 +74,69 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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 bgcolor="#CCCC99">
|
<tr bgcolor="#CCCC99">
|
||||||
<td width="5" bgcolor="#333333"> </td>
|
<td width="5" bgcolor="#333333"> </td>
|
||||||
<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>
|
<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>
|
||||||
<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="menu2"><a href="../detect_esp.htm" class="link"><br>
|
<span class="menu2"><a href="../detect_esp.htm" class="link"><br>
|
||||||
</a><span class="titulos1">
|
</a><span class="titulos1"> RESERVAS Y CONTACTO </span></span><br>
|
||||||
RESERVAS Y CONTACTO </span></span><br>
|
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0">
|
<table width="100%" border="0">
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<td width="42%" class="texto"><p>Para
|
<td width="42%" class="texto"><p>Para
|
||||||
realizar una reserva o solicitar más información,
|
realizar una reserva o solicitar más información, <br>
|
||||||
<br>
|
|
||||||
contacte con nosotros:<br>
|
contacte con nosotros:<br>
|
||||||
<span><br>
|
<span><br>
|
||||||
<a href="mailto:info@villadepalacios.com" class="titulos3">
|
<a href="mailto:info@villadepalacios.com" class="titulos3"> info@villadepalacios.com</a><br>
|
||||||
info@villadepalacios.com</a><br>
|
|
||||||
<br>
|
<br>
|
||||||
</span><span class="titulos3">Barrio Palacios 150<br>
|
</span><span class="titulos3">Barrio Palacios 150<br>
|
||||||
San Miguel de Aras. Voto <br>
|
San Miguel de Aras. Voto <br>
|
||||||
39766 - Cantabria<br>
|
39766 - Cantabria<br>
|
||||||
<br>
|
<br>
|
||||||
Tel. 942 679 150 <br>
|
Tel. 942 679 150<br>
|
||||||
|
Fax. 942 679 241 </span><span class="titulos3"><br>
|
||||||
Mov. 627 030 030 <br>
|
Mov. 627 030 030 <br>
|
||||||
</span>
|
</span> <br/>
|
||||||
|
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/>
|
||||||
<br/>
|
<br/>
|
||||||
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/><br/>
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<p align="left"><strong>Para
|
<p align="left"><strong>Para
|
||||||
llegar:</strong><br>
|
llegar:</strong><br>
|
||||||
@ -136,9 +149,8 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
Hay unos 9
|
Hay unos 9
|
||||||
Km. Desde la autovía hasta “La Villa
|
Km. Desde la autovía hasta “La Villa
|
||||||
de Palacios”.<span class="titulos2"><br>
|
de Palacios”.<span class="titulos2"><br>
|
||||||
</span></p>
|
</span></p></td>
|
||||||
</blockquote></td>
|
<td height="365" colspan="2"><div align="center">
|
||||||
<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>
|
<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
|
<span class="titulos3">A 45 minutos de Bilbao y de
|
||||||
Santander</span></a><span class="titulos3">. </span><span class="texto"><br>
|
Santander</span></a><span class="titulos3">. </span><span class="texto"><br>
|
||||||
@ -148,12 +160,22 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
</table>
|
</table>
|
||||||
<p align="center"><span class="titulos4">Coordenadas G.P.S.</span><br>
|
<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>
|
<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>
|
<strong>Latitud: </strong>N43 grados 19 minutos 52 segundos</p></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>
|
||||||
|
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>
|
||||||
|
|||||||
@ -112,7 +112,15 @@ body {
|
|||||||
</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" >
|
||||||
|
<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>
|
||||||
</td>
|
</td>
|
||||||
@ -121,5 +129,10 @@ body {
|
|||||||
</td>
|
</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">
|
||||||
<!--
|
<!--
|
||||||
.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,40 +78,59 @@ 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
|
|
||||||
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
</object></noscript>
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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="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> ·<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="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="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="titulos1"><br>
|
<span class="titulos1"><br>
|
||||||
GALERÍA DE IMÁGENES </span></span><span class="texto"><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>
|
||||||
|
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">
|
||||||
@ -135,12 +151,12 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<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> <br>
|
</table>
|
||||||
|
<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">
|
||||||
@ -161,13 +177,13 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<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> <br>
|
</table>
|
||||||
|
<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">
|
||||||
@ -193,12 +209,22 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<br>
|
<br>
|
||||||
</span></p></td>
|
</span></p></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,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,38 +95,53 @@ 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
|
|
||||||
</script>
|
|
||||||
<noscript>
|
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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>
|
</object>
|
||||||
</noscript>
|
<!--<![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>
|
||||||
@ -145,26 +156,21 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
<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>
|
</span> Haz una escapada y disfruta
|
||||||
Haz una escapada y disfruta
|
del mejor <strong>turismo rural</strong> en un sitio con excelentes comunicaciones y posibilidades de ocio: a 15 minutos de <strong>Laredo
|
||||||
del mejor <strong>turismo rural</strong>
|
|
||||||
en un sitio con excelentes comunicaciones y posibilidades de ocio: a 15 minutos de <strong>Laredo
|
|
||||||
y sus playas</strong> y a 40 minutos de<strong> Santander </strong>y de<strong> Bilbao</strong>. <br>
|
y sus playas</strong> y a 40 minutos de<strong> Santander </strong>y de<strong> Bilbao</strong>. <br>
|
||||||
<br>
|
<br>
|
||||||
Visita el conocido<a href="http://www.guggenheim-bilbao.es/idioma.htm" target="_blank" class="texto"><strong>
|
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
|
||||||
<span class="textoNegrita"><u>Museo Guggenheim</u></span></strong></a>, conoce la Reserva Natural de las Marismas
|
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
|
||||||
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
|
|
||||||
la zona.<br>
|
la zona.<br>
|
||||||
</div></td>
|
</div></td>
|
||||||
<td width="52%" height="289" valign="middle"> <div align="right">
|
<td width="52%" height="289" valign="middle"><div align="right">
|
||||||
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
<p align="center"><img src="../img_nav/foto_portada.jpg" width="340" height="232" align="top"><br>
|
||||||
<span class="titulos4"><br>
|
<span class="titulos4"><br>
|
||||||
Bienvenido a La Villa de Palacios ***</span></p>
|
Bienvenido a La Villa de Palacios ***</span></p>
|
||||||
@ -173,22 +179,34 @@ AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/
|
|||||||
</div></td>
|
</div></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="left" valign="top">
|
<tr align="left" valign="top">
|
||||||
<td height="108" colspan="2" class="texto"> <br>
|
<td height="108" colspan="2" class="texto"><br>
|
||||||
<br>
|
<br>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
|
<td width="35%" height="69" valign="top"><img src="../img_nav/logo_clubdecalidad.jpg" width="165" height="60"> <img src="../img_nav/logocasonas.gif" width="69" height="60"></td>
|
||||||
<td width="65%" valign="top" class="texto">La Villa de Palacios ostenta la categorí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>
|
<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>
|
||||||
www.calidadcantabria.com</a> </td>
|
www.calidadcantabria.com</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table></td>
|
</table></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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
<!-- InstanceEnd --></html>
|
</html>
|
||||||
|
|||||||
@ -90,5 +90,10 @@ por día </strong></span></td>
|
|||||||
</span></div></td>
|
</span></div></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</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>
|
||||||
|
|||||||
@ -34,5 +34,10 @@
|
|||||||
</div></td>
|
</div></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">
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
@ -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>
|
|
||||||
<noscript>
|
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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>
|
</object>
|
||||||
</noscript>
|
<!--<![endif]-->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
</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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -105,5 +105,10 @@ body {
|
|||||||
PlanetaGalleta.com | Web design | 2003</a></div> </td>
|
PlanetaGalleta.com | Web design | 2003</a></div> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
swfobject.registerObject("FlashID");
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</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,14 +11,22 @@
|
|||||||
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')
|
||||||
|
$fichero = fopen('../eng/tarifas_eng.htm', 'w');
|
||||||
|
else
|
||||||
|
$fichero = fopen('previsualizar_tarifas_eng.htm', 'w');
|
||||||
|
|
||||||
fwrite($fichero, $texto_tarifas_eng);
|
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>
|
|
||||||
<noscript>
|
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>
|
</object>
|
||||||
</noscript>
|
<!--<![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>
|
|
||||||
<noscript>
|
|
||||||
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="200">
|
|
||||||
<param name="movie" value="../img_nav/top.swf">
|
<param name="movie" value="../img_nav/top.swf">
|
||||||
<param name="quality" value="high">
|
<param name="quality" value="high">
|
||||||
<embed src="../img_nav/top.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="200"></embed>
|
<param name="wmode" value="transparent">
|
||||||
|
<param name="swfversion" value="6.0.65.0">
|
||||||
|
<!-- 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="expressinstall" value="../Scripts/expressInstall.swf">
|
||||||
|
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
|
||||||
|
<!--[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>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>
|
</object>
|
||||||
</noscript>
|
<!--<![endif]-->
|
||||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#CCCC99">
|
</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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</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