var cnv = document.getElementById('canvas');
var ctx = cnv.getContext('2d');
ctx.width = ctx.width; // Clear the canvas
// Draw an outlined yellow circle
ctx.beginPath();
ctx.arc(160, 100, 95, 0, Math.PI*2, false);
ctx.closePath();
ctx.fillStyle = "#FFFF00";
ctx.fill();
ctx.strokeStyle = "#000000";
ctx.stroke();
// Draw the mouth
ctx.fillStyle = "#000000";
ctx.beginPath();
ctx.arc(160, 100, 75, 0, Math.PI+(Math.PI*0)/2, false);
ctx.closePath();
ctx.fill();
// And a couple of eyes
ctx.beginPath();
ctx.arc(135, 60, 15, 0, Math.PI*2, false);
ctx.closePath();
ctx.fill();
ctx.beginPath();
ctx.arc(185, 60, 15, 0, Math.PI*2, false);
ctx.closePath();
ctx.fill();