



function hora(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("horalong"): document.all.tick2
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+" "+dn
thelement.innerHTML=""+ctime+"</b>"
setTimeout("hora()",1000)
}
//window.onload=hora


function correo()
{
var usuario = "webllorens"
var dominio = "yahoo.es"

document.write("<br/><span><u>Correo al Webmaster</u> :</span><a title=\"Correo al Webmaster, intercambio de enlaces, sugerencias.\"  href=\"mailto:" + usuario + "@" + dominio + "\">" + usuario + "@" + dominio + "</a><span>, Intercambio de enlaces.</span>")

}

function agregar(){
if (document.all)
window.external.AddFavorite("http://www.osteopatia-masaje.com","Centro de Osteopatía LLoréns")
}


function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=400, height=300, top=85, left=140";
var opciones2="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=800, height=543, top=85, left=140";
var opciones3="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=190, height=303, top=85, left=140";
var opciones4="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600, top=85, left=140";


switch (pagina) {
	 case 'fachada':
	 window.open("fachada.html","",opciones);
	 break;
	 case 'planometro':
	 window.open("planometro.html","",opciones2);
	 break;
	 case 'parking':
	 window.open("parking.html","",opciones3);
	 break;
	 case 'EMT':
	 window.open("http://www.emtmadrid.es/","",opciones4);
	 break;
	 
	 }

}



function close_window() {
    window.close();
}

//El posicionamiento de la capa sobre el cursor no funciona en Firefox.
/*
function ver_ejemplo(nombreCapa,ValueShow) {
document.getElementById(nombreCapa).style.visibility=ValueShow; 
document.getElementById(nombreCapa).style.left = window.event.x + 5;  
document.getElementById(nombreCapa).style.top = window.event.y; 
}
*/
function ver_ejemplo(nombreCapa,ValueShow,indice) {
document.getElementById(nombreCapa).style.visibility=ValueShow;
document.getElementById(nombreCapa).style.index=indice; 

}



/* Envio de email*/
var initialsubj="Correo de un amigo";
var initialmsg="Has recibido este mensaje porque un amigo te ha recomendado que visites la pagina web del 'CENTRO DE OSTEOPATIA LLORENS'.  Te sugiero que hagas click en este enlace para visitar la pagina.           http://www.osteopatia-masaje.com";
var good;



function checkEmailAddress(field) {

var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.sex)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);


if (goodEmail) {
good = true;
}
else {
alert('Please enter a valid address.');
field.focus();
field.select();
good = false;
   }
}


function mailThisUrl() {
good = false;
checkEmailAddress(document.eMailer.email);
if (good) {
var direccion = document.eMailer.email.value;
var initialsubj = document.eMailer.asunto.value;

window.location = "mailto:"+direccion+"?subject="+initialsubj+"&body="+initialmsg;

   }
}


window.onload = function(){
hora();
}












