function click() { if (event.button == 2){ alert("Las imágenes de este sitio estan registradas a nombre de Gabbee."); } if (event.button == 1 && event.shiftKey==1 && event.ctrlKey == 1) { if (event.srcElement.id == 'boton') { var oDiv = document.getElementById('acercade'); oDiv.style.visibility = 'visible'; oDiv.style.behavior = 'url("iepngfix.htc")'; } } } function OcultarAcercade() { var oDiv = document.getElementById('acercade'); oDiv.style.visibility = 'hidden'; } document.onmousedown = click; document.oncontextmenu = function(){ alert("Las imágenes de este sitio estan registradas a nombre de Gabbee."); return false; } function ValidarCantidad(objCnt, nMin) { if (nMin < 1) nMin = 1; var resto = (objCnt.value % nMin); bool = true; if ((objCnt.value % nMin) != 0) { alert('Este artículo debe pedirse en unidades de '+nMin.toString()); objCnt.value = Math.floor(objCnt.value / nMin) * nMin; bool = false; } return bool } function MostrarOferta(div) { var oDiv = document.getElementById(div); if (oDiv.style.visibility != 'visible') { oDiv.style.visibility = 'visible'; oDiv.style.height = 'auto'; } else { oDiv.style.visibility = 'hidden'; oDiv.style.height = '0'; } }