/*
Web realizada por Juan Díaz (Junio 2007)
http://www.deide.com
*/

// Correo electronico
dm = location.hostname;
cm = dm.match('www');
if (cm) d = dm.substr(4);
else d = dm;
//em = 'informacion@'+d;
em = 'info@institutomedicodealtatecnologia.es';
e = '<a href="mailto:'+em+'" title="Enviar un mensaje">'+em+'</a>';

// Abrir archivo popup
function fotoexterna(c,w,h,p) {
l = (screen.width)?(screen.availWidth-w)/2:0;
t = (screen.height)?(screen.availHeight-h)/2:0;
atb = 'height='+h+',width='+w+',top='+t+',left='+l+',resizable=no,scrollbars=no,status=no,menubar=no,location=no,toolbar=no';
if (p) {
window.open(c,'pagina',atb);
}
else {
v = window.open('','imagen',atb);
v.document.open();
v.document.write('<html>');
v.document.write('<head><title>Hidroterapia de Colon</title><link href="estilos.css" rel="stylesheet" type="text/css"/><meta http-equiv="imagetoolbar" content="no"/></head>');
v.document.write('<body onload="document.imagen.style.display=\'\';" style="background:white"><a href="javascript:window.close()"><img src="'+c+'" style="display:none" name="imagen"/></a></body>');
v.document.write('</html>');
v.document.close();
}
}