<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Code Snippet Template</title>
<script type="text/javascript">
// 'true' for using browser window for logging
var SCREEN_LOG = false;
function iD (x) {
return document.getElementById(x);
}
function debug (msg) {
iD("debug_zone").innerHTML += msg + "<br>";
}
</script>
</head>
<body>
<script type="text/javascript">
document.write("<div id='debug_zone' style='position: absolute; top: 9px; right: 16px; max-width: 50%; font-size: 12px; font-family: Arial; margin-right: 8px'></div>");
if ( SCREEN_LOG ) {
var console = {};
console.log = function (message) { debug(message) };
}
/* */
// INSERT CODE HERE
</script>
</body>
</html>