<script type="text/javascript"> /* <![CDATA[ */ function handleCallback(transaction,resultSet) { debug(this.caller,transaction,resultSet); } function handleError(transaction,resultSet) { error(this.caller,transaction,resultSet); } function indexedDBCheck() { if (!window.indexedDB) { if (window.mozIndexedDB) { return true; } else if (window.webkitIndexedDB) { return true; } else if (window.msIndexedDB) { return true; } else { return false; } } return true; } if (window.indexedDBCheck()) { document.write('<strong>YES<\/strong>'); } else if (openDatabase) { document.write('<strong>Deprecated openDatabase Support :-(<\/strong>'); } else { document.write('<strong>NO<\/strong>'); } /* ]]> */ </script>