// JavaScript Document

function ViewPresenterNotes() {
	var d;
	if (d = document.getElementById('presenternotes')) {
		var w = window.open('about:blank', 'PresenterNotes', 'width=500,height=250,scrollbars=yes,resizable=yes');
		var str = '<html><head><title>Notes</title><link rel="stylesheet" type="text/css" href="'+String(document.location)+((typeof(InFilesystemExport)=='undefined')?'':'/../')+'../themes/towards2060/css/notes.css"></head><body class="typography"><div id="print"><a href="javascript:window.print()">Print notes</a></div><div id="content">'+d.innerHTML+'</div></body></html>';
		w.document.write(str);
		w.document.close();
		w.focus();
	}
	return false;
}