<!--
function showNoteLWS(notename,thetop, theleft){
                        var thisnote=document.getElementById(notename);
				var fromtop = thetop-250;
				var fromleft = theleft-100;
                        thisnote.style.display='block';
						//thisnote.style.top=10;
						//thisnote.style.left=10;
						thisnote.style.top=(event.clientY)-000;
						thisnote.style.left=(event.clientX)-600;

						
            }

function hideNoteLWS(notename){
                        var thisnote=document.getElementById(notename);
                        thisnote.style.display='none';
            }

//--->