// JavaScript Document Germán Díaz 26/03/2003 function barra_status(msgStr) { //v1.0 status=msgStr; document.MM_returnValue = true; } function showStatus(msgStr) { window.status = msgStr; return true ; } function ventana(img, msg) { izquierda=0 if (screen) { izquierda = screen.width-650 } resp=window.open(img,'Ventanita', 'width=640,height=480,left=' + izquierda + ',top=50,status=yes') resp.window.status=msg; resp.window.document.title="COMPRANDO EN COFA'S AHORRA MAS"; } function ventana1(img, msg, wid, hei) { izquierda=0 if (screen) { izquierda = screen.width-650 } if (wid==640) { resp=window.open(img,'Ventanita', 'width=' + wid + ',height=' + hei + ',left=' + izquierda + ',top=50,status=yes') resp.window.status=msg; } else { resp=window.open(img,'Ventanita', 'width=' + wid + ',height=' + hei + ',left=' + izquierda + ',top=20,status=yes') resp.window.status=msg; } } function delay(ms) { for(i=0;i<=ms;i++) { setTimeout("return 0", 1); } } function Tecla(event) { var x = event.key; if (x === "a") ¦¦ (x === "A") { alert("Presionada letra A"); } }