' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Metodo para invalidar las teclas de "history back/forward" en el browser
' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub document_onkeydown()

	set we = window.event
	'
	' Deshabilitar "backspace" (8) si no se esta en un tag INPUT (caja texto, etc)
	'
	if we.keyCode = 8 then
		if we.srcElement.tagName <> "INPUT" then
			we.returnvalue  = false
			we.cancelbubble = true
		else
			'
			' Deshabilitar "backspace" cuando el tipo de tag INPUT es un boton o checkbox
			'
			if we.srcElement.type = "button" or we.srcElement.type = "submit" or we.srcElement.type = "image" or we.srcElement.type = "checkbox" then
				we.returnvalue  = false
				we.cancelbubble = true
			end if
		end if
	end if
	'
	' Deshabilitar "alt" (si se presiono "alt" + fecha izquierda o derecha)
	'
	if we.altKey then
		if we.keycode = 37 or we.keycode = 38 then
			we.returnvalue  = false
			we.cancelbubble = true
		end if
	end if

End Sub
