	function openNote(thislink,thistitle)
		{
			var notewidth;
			var noteheight;
			var newwindow = '';
			var windowprops;
			
			notewidth='650';
			noteheight='400';
			windowprops='toobar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + notewidth + ',height=' + noteheight;
		
			if (!newwindow.closed && newwindow.location)
			{
				newwindow.location.href = thislink;
			}
			else
			{
				newwindow=window.open(thislink,thistitle,windowprops);
				if (!newwindow.opener) newwindow.opener = self;
			}
			
			if (window.focus) {newwindow.focus()}
			return false;
		}
