canvas.html
<html>
<script>
function init()
{
alert( "init" );
}
window.onload = init;
</script>
<head>
</head>
<body>
<h1>HTML5 canvas management</h1>
</body>
</html>