function closenote(){
	var obj = document.getElementById('postitdiv');
    obj.style.visibility = "hidden";

}
function shownote(){
	var obj = document.getElementById('postitdiv');
    obj.style.visibility = "visible";

}