
	function openNote(parentId,pageNum) {
		w = window.open('','','resizable,scrollbars,menubar,top=200,left=100,height=380,width=640');
		w.location.href='note!open.htm?model.id.pageNum='+pageNum+'&model.id.parentId='+parentId;
		w.opener=window;
	}
	
	function pageContent(parentId,pageNum) {
		w = window.open('','','resizable,scrollbars,menubar,top=200,left=100,height=680,width=840');
		w.location.href='note!content.htm?page.id.pageNum='+pageNum+'&page.id.parentId='+parentId;
		w.opener=window;
	}
	
	function changePassword() {
		w = window.open('','','resizable,scrollbars,menubar,top=300,left=400,height=190,width=340');
		w.location.href='note!password.htm'
		w.opener=window;
	}