//initNote();

function initNote(){
	document.write('<div id="note" style=" position:absolute; z-index:9999; width:240px; height:250px; background-color:#eee; top:0; right:0;">');
	document.write('<img src="note.jpg" /></div>');
	var ch=document.documentElement.clientHeight;
	var obj=document.getElementById('note');
	ch=ch-obj.scrollHeight+document.documentElement.scrollTop;
	obj.style.top=ch+'px';
	window.setInterval("positionNote();",30);
}
function positionNote(){
	var obj=document.getElementById('note');
	var ch=document.documentElement.clientHeight;
	ch=ch-obj.scrollHeight+document.documentElement.scrollTop;
	obj.style.top=ch+'px';
}