﻿// JScript File
function showInfo(myID)
{
	var strProtecta = "<h4 align='center'>PROTECTA-Wireless Control to MUTE and TEST your Smoke Detectors</h4><img src='images/protecta_ logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>The Amesbury Locca Protecta is a smoke detection system that can be hardwired during new construction, retrofitted into existing mounts, or installed as a battery operated Smoke Detector, with the added feature of being able to manage it from a control unit plugged into a handy outlet.  Instantly Mute accidental alarms (like for burnt toast) by pressing the Mute button to reset the system.  Also, the Test Button illuminates every 30 days-press the Test button, and it automatically checks them for you, and lets you know if one of them has a low backup battery.  No software, just plug and play.  Automatically links all Amesbury Protecta Smoke Detectors to one control unit.  <br /><br />Ideal for single and multiple family homes, apartments, assisted living or retirement communities, nursing homes, and especially helpful for those who are in wheelchairs or are unable to climb ladders to maintain traditional smoke detectors.  Easy to install! </p>";
	
	var strMulti = "<h4 align='center'>MULTI-Wireless Remote Control to Unlock Your Front Door</h4><img src='images/multi_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>The Amesbury Locca MULTI, similar to the ACCESS, is a wireless remote control to unlock your front door.  However, the MULTI has the added feature of being able to add and delete up to 999 individual remotes to one door!  Additionally, the MULTI system allows you to control the add and delete, your preferences to distance, tone, and length of time the lock stays open-all on a visible LED screen on the face of the control unit.  50' range.  No software to learn, just a simple Master Remote grants access to those you choose to give remotes to. Box comes with Control Unit, 1 Master Control Remote, 2 Lifestyle remotes, electric strike, rechargeable backup battery, and plug in.  Easy to install.<br /><br />Perfect for single and multiple family homes, apartments, assisted living or retirement communities.  Also great for disability apartments, or buildings and businesses who are required to provide wheelchair access. </p>";
	
	var strAccess = "<h4 align='center'>ACCESS-Wireless Remote Control to Unlock Your Front Door</h4><img src='images/access_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>The Amesbury Locca ACCESS is a wireless remote control to unlock your front door. By utilizing and electric strike in the door frame, home owners can gain entry by pressing their remote and pushing the door open. No keys, no handle cranking, just press the remote and walk through. Up to 19 remotes can be programmed to one door! 50' range. No software to learn, just a simple Master Remote grants access to those you choose to give remotes to. Box comes with Control Unit, 1 Master Key, and 2 SureTouch remotes, an electric strike for the latch lock, rechargeable backup battery, and plug in. Easy to install. (Kit shown below with optional Suretouch remotes, which are available for purchase separately.) </p>";
	
	var strConnecta = "<h4 align='center'>CONNECTA-Upgrade your ACCESS or MULTI system to include Wireless Intercom for your Home </h4><img src='images/connecta_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>When added to either the ACCESS or the MULTI unlocking systems, the Amesbury Locca CONNECTA becomes a wireless handheld intercom system that can also unlock your door!  The convenience of entry door intercom for guests to speak to the family inside, plus the ability to unlock the door remotely!  The main control box is mounted by the front door, guests push the button, it rings to the stylish handheld intercom, you push Talk to find out who is at the door, and if you choose, you can press Open to unlock the door to let them in...without ever going to the door.  This means that you don't have to stop stirring the pudding in the kitchen, or have to come in from the backyard, or get up from your easy chair to answer the door.  Just press the handheld receiver to Talk and Open for guests at your front door! </p>";
	
	var strLab = "<h4 align='center'>Amesbury Locca Lab-Your Home Innovations Think Tank</h4><img src='images/lab_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>Whether it's products to give added independence or to make life easier for all, the Amesbury Locca Lab is always working on new ideas to bring affordable home access to you.</p>";
	
	var strLifestyle = "<h4 align='center'>Lifestyle Remote</h4><img src='images/lifestyle_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>Sleek and stylish remote.  Slim and contoured to reduce bulky keys in pockets.  2 Lifestyle remotes per MULTI kit standard.  Additional remotes can be purchased separately.  (MULTI system can accept up to 999 individual user remotes.)  SureTouch or Lifestyle remotes can be used on either system. </p>";
	
	var strSureTouch = "<h4 align='center'>SureTouch Remote </h4><img src='images/suretouch_logo100.jpg' style='float:right; margin-right: 50px; margin-left: 15px;' /><p class='norm12'>Easy to press, easy to see black and yellow remote.  2 SureTouch remotes per Access kit standard.  Additional remotes can be purchased separately.  SureTouch or Lifestyle remotes can be used on either system.  (ACCESS system can accept up to 19 individual user remotes.) </p>";
	
	var strDefault = "<h4 align='center'>Amesbury Group's newest products!!</h4><img src='images/HomeIdeasLogo.jpg' style='float:right; margin-right: 15px; margin-left: 15px;' /><p class='norm12'>Amesbury Locca is bringing Access Control to North America. We are \"innovating the every day\", by providing home owners with products that will make life easier, and in some cases give added independence! Select one of the products below to find out how you can own a remote control to unlock the doors of your home or small business!  Great for busy families, the socially elite, those suffering from arthritis or disability, and especially cool for those who consider themselves \"techy\" or \"gadget gurus\".    </p>";
	switch(myID)
	{
	  case 'protecta':
	    document.getElementById("InfoArea").innerHTML = String(strProtecta);
	    break;
	  case 'multi':
	    document.getElementById("InfoArea").innerHTML = String(strMulti);
	    break;
	  case 'access':
	    document.getElementById("InfoArea").innerHTML = String(strAccess);
	    break;
	  case 'connecta':
	    document.getElementById("InfoArea").innerHTML = String(strConnecta);
	    break;
	  case 'lab':
	    document.getElementById("InfoArea").innerHTML = String(strLab);
	    break;
	  case 'lifestyle':
	    document.getElementById("InfoArea").innerHTML = String(strLifestyle);
	    break;
	  case 'suretouch':
	    document.getElementById("InfoArea").innerHTML = String(strSureTouch);
	    break;
	  case 'default':
	    document.getElementById("InfoArea").innerHTML = String(strDefault);
	    break;
  	
	  default: 
	    document.getElementById("InfoArea").innerHTML = String(strDefault);
	
	}
	
}

function spanishDefault()
{
  var result1 = "<h4 align=\"center\">Los productos m&agrave;s novedosos de Amesbury Group</h4>";
  var result2 = "<div style=\"float:right; margin-right: 15px; margin-left: 15px;\">";
  var result3 = "<a href=\"Video/myvideoplayer.html\" onclick=\"window.open('Video/myvideoplayer.html', 'myWin', 'toolbar=no, directories=no, location=yes, status=yes, menubar=no, resizable=no, scrollbars=nos, width=450, height=425, top=150, left=100'); return false\" >";
  var result4 = "<img src=\"images/Span_HomeIdeasLogo.jpg\" border=\"0\" alt=\"Inicio Ideas\" /></a></div>";
  var result5 = "<p class='norm12'>Amesbury Locca  trae Acceso de Control a distancia a Latino America. &quot;Estamos Innovando lo Cotidiano&quot;, proporcionando a los due&ntilde;os de hogares con productos  que pueden hacer la vida mas fàcil, y en unos casos,a&ntilde;adiendo independencia!  Escoga unos de los productos abajo para descubrir como puede usar un control de distancia para abrir las puertas de su casa o de su negocio!  Es maravilloso para familias ocupadas; la social elite, o para aquellos que sufren de artritis  o de una inhabilidad, especialmente moderno para aquellos que se consideran &quot;g&ugrave;rus tecnol&ograve;gicos&quot;.</p>";
  return result1 + result2 + result3 + result4 + result5;
}

function spanishMulti()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/multi_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Realzado para comunidades y propiedades comerciales!</h4>";
  var result3 = "<p class=\"para\">MULTI de Amesbury Locca, similar a ACCESS, es un control inalàmbrico remoto que abre tu puerta.  Sin embargo, MULTI tiene una caractèristica agregada que te deja agregar y suprimir hasta 999 controles de distancia individuales en una sola puerta o unidad!  Adicionalmente, el sistema MULTI te deja controlar lo que agregas o suprimes, tus preferencias de distancia, tono, y longitud que la puerta se quede abierta- todo esto es visible en una pantalla en la unidad de control.  Gama de 45 metros.  No hay software que aprender, solamente un simple control principal le concede acceso a quienes elijas.  La caja incluye dos tele-controles remotos, la linea èlectrica, bateria re-cargable de respaldo y enchufe para la pared.  Fàcil de instalar!</p>";
  var result4 = "<p class=\"para\">Perfecto para hogares de familia, apartamentos, comunidades de retirados.  Maravilloso para apartamentos para los inhabilitados o para negocios que son requiridos en proporcionar acceso a personas en sillas de ruedas.</p>";
  return result1 + result2 + result3 + result4;
}

function spanishProtecta()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/protecta_ logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Innovacion casera salvavidas de Amesbury Locca Protecta</h4>";
  var result3 = "<p class=\"para\">Protecta - de Amesbury Locca, es un sistema de detecciòn de humos que puede ser instalado durante nueva construcciòn, adaptado en conecciones existentes o instalado como un detector de humos de baterias, con la caractèristica agregada que puede controlarlo desde la unidad principal en la pared.  Alarmas accidentales que reajustan el sistema instantaneamente.  Tambièn, el boton de prueba se ilumina cada 30 dias- presione el botòn, y automaticamente lo chequea por ti, y le avisa si alguna unidad tiene la bateria baja.  No hay software, solamente conèctelo!  Automaticamente conecta todos los detectores de humo de Amesbury en una sola unidad de control!</p>";
  var result4 = "<p class=\"para\">Ideal para hogares de familia, apartamentos, comunidades de retirados, clinicas de reposo y especialmente provechoso para personas en sillas de ruedas o que no son capazes de subir escaleras para mantener detectores de humo tradicionales.  Fàcil de instalarar!</p>";
  return result1 + result2 + result3 + result4;
}

function spanishAccess()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/access_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Abre tu puerta remotamente con el toque de un botòn</h4>";
  var result3 = "<p class=\"para\">Access de Amesbury Locca es un control de distancia inalàmbrico que abre la puerta del frente de tu casa o negocio.  Utilizando una linea elèctrica en el marco de la puerta, los dueños de casa pueden adquirir entrada oprimiendo el control y empujando la puerta.  No hay llaves, no hay que tocar la manija, solamente oprima el botòn en tu control y entre!  Hasta 19 controles de distancia pueden ser programados en una puerta o unidad, a una gama de 45 mètros!  No hay que aprender ningùn software, solamente un simple control principal le da acceso a quien elijas darle control de distancia.  La caja incluye una llave principal, dos tele-controles remotos, la linea elèctrica, bateria re-cargable de respaldo y enchufe para la pared.  Fàcil de instalar!</p>";
  var result4 = "<p class=\"para\">Perfecto para hògares de familia, apartamentos, comunidades de retirados y especialmente le da acceso provechoso a las personas inhabilitadas o en silla de ruedas!</p>";
  return result1 + result2 + result3 + result4;
}

function spanishConnecta()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/connecta_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Saluda a tus huespedes remotamente!</h4>";
  var result3 = "<p class=\"para\">Cuando añades a el sìstema ACCESS o MULTI, el sìstema CONNECTA de Amesbury Locca se convierte en un sìstema intercomunicador inàlambrico pòrtatil que tambièn puede abrir su puerta!  La conveniencia de el intercomunicador para sus huèspedes que esten afuera pueden comunicarse con Ud. adentro, mas la abilidad de poder abrir la puerta remotamente!  La caja de control principal es conectada en tu puerta del frente, los visitantes òprimen un botòn, suena en su control intercomunicador pòrtatil, oprima de botòn 'TALK' para preguntar quien toca la puerta, y si tu elijes, puedes oprimir el botòn y abrir la puerta remotamente!  Sin tener que ir a la puerta personalmente!  Esto significa que no tiene que desatender a los niños, o a lo que tiene en el horno o pararse de su sofa.  Solamente presiones el botòn en el control pòrtatil para hablarles a sus huèspedes afuera o para abrirles la puerta!</p>";
  var result4 = "<p class=\"para\">Ideal para hogares!  Apartamentos, comunidades de retirados!  Es maravilloso para casas de reposo para personas inhabilitadas, o para negocios o edificios que requieren  acceso para personas de sillas de ruedas!</p>";
  return result1 + result2 + result3 + result4;
}

function spanishLifeStyle()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/lifestyle_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Amesbury Locca Lifestyle</h4>";
  var result3 = "<p class=\"para\">Control remoto liso, compacto y de estilo!  Delgado y contorneado para reducir llaves abultadas en los bolsillos.  2 Lifestyle controles remotos por cada caja del sìstema Multi.  Controles adicionales pueden ser comprados separadamente.  ( El sìstema Multi puede acceptar hasta 999 controles individuales).  Controles rèmotos de Suretouch o Lifestyle pueden ser usados en cualquier de los dos sìstemas!</p>";
  return result1 + result2 + result3;
}

function spanishSuretouch()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/suretouch_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Amesbury Locca Suretouch</h4>";
  var result3 = "<p class=\"para\">Fàcil de presionar, fàcil de ver el control rèmoto amarillo y negro.  2 controles Sure Touch con cada caja del sìstema Access.  Controles adicionales pueden ser comprados separadamente.  Controles de Sure Touch o Lifestyle pueden ser usados en cualquier sìstema.  ( El sìstema Access puede acceptar hasta 19 controles en una unidad).</p>";
  return result1 + result2 + result3;
}

function spanishLab()
{
  var result1 = "<div style=\"float:right; margin-right: 10px; margin-left: 10px; margin-top: 10px;\"><img src=\"images/lab_logo100.jpg\" alt=\"Amesbury Locca - Protecta\" /></div>";
  var result2 = "<h4 align='center'>Amesbury Locca Lab - Nuevos Conceptos para Innovaciones para su Hogar!</h4>";
  var result3 = "<p class=\"para\">Si sus pròductos sòn para añadir independencia  o para hacerle la vida màs practica a todos, Lab de Amesbury Locca siempre està pensando en nuevas ideas para traerle acceso a su hogar a buenos precios!</p>";
  return result1 + result2 + result3;
}

function spanishInfo(myID)
{
  switch(myID)
  {
    case 'multi':
	    document.getElementById("InfoArea").innerHTML = String(spanishMulti());
	    break;
    case 'protecta':
	    document.getElementById("InfoArea").innerHTML = String(spanishProtecta());
	    break;
    case 'access':
	    document.getElementById("InfoArea").innerHTML = String(spanishAccess());
	    break;
    case 'connecta':
	    document.getElementById("InfoArea").innerHTML = String(spanishConnecta());
	    break;
    case 'lifestyle':
	    document.getElementById("InfoArea").innerHTML = String(spanishLifeStyle());
	    break;
    case 'suretouch':
	    document.getElementById("InfoArea").innerHTML = String(spanishSuretouch());
	    break;
    case 'lab':
	    document.getElementById("InfoArea").innerHTML = String(spanishLab());
	    break;
	  case 'default':
	    document.getElementById("InfoArea").innerHTML = String(spanishDefault());
	    break;  	
	  default: 
	    document.getElementById("InfoArea").innerHTML = String(spanishDefault());
  }
}
