<!--

function showNoteLWS(notename, x, y){
		var thisnote=document.getElementById(notename);
		thisnote.style.visibility='visible';
		//thisnote.left=600;
		//thisnote.top=200;
		thisnote.left=x;
		thisnote.top=y;


            }

function hideNoteLWS(notename){
              var thisnote=document.getElementById(notename);
              thisnote.style.visibility='hidden';

            }


//--->