// JavaScript Document


function popnote(cite)
{
	content = document.getElementById(cite).innerHTML; 
	CiteWindow = window.open("about:blank", "CiteWindow", "toolbar=no,top=200,left=200,width=350,height=350,status=no,scrollbars=yes,resizable=yes,menubar=no");
	CiteWindow.document.write("<span style='font-family: Verdana, Arial; font-size: 12px;'>");
	CiteWindow.document.write(content);
	CiteWindow.document.write("<br /><br /><br /><small><a href='javascript:window.close()'>Close Window</a></small>");
	CiteWindow.document.write("</span>");
	CiteWindow.document.close();
	CiteWindow.focus();
}