

var newwindow;
function NotesPopup(url)
{
	newwindow=window.open(url,'NotesWindow','height=300,width=400,scrollbars=yes,left=300,top=200');
	if (window.focus) {newwindow.focus()}
}

