function showNote( noteId ) {

	var x;

	if (document.getElementById) {
		x = document.getElementById( noteId );
	} else if (document.all) {
	 	x = document.all[ noteId ];
	} else if (document.layers) {
		x = document.layers[ noteId ];
	}

	x.style.display    = 'block';
  	x.style.visibility = 'visible';
  	x.style.position   = 'relative';
  	return;
}

function closeNote( noteId ) {

  	var x;


	if (document.getElementById) {
		x = document.getElementById( noteId );
	} else if (document.all) {
	 	x = document.all[ noteId ];
	} else if (document.layers) {
		x = document.layers[ noteId ];
	}

	x.style.display    = 'none';	
  	x.style.visibility = 'hidden';
  	x.style.position   = 'absolute';  
  	return;
}  

