document.addEventListener('load', function(){
	var node= document.getElementById('blank');
	var ctx= node.getContext('2d');
	ctx.fillStyle='#fefefe';
	ctx.fillRect(0,0,node.width,node.height);
    });
