


function draw_single_post_it(theURL, theText, currentPageNum)
{
	mydoc = document;
	
	mydoc.write ("<TR><TD HEIGHT='10'></TD></TR>");


		mydoc.write ('<TR><TD BACKGROUND="images/post-it.gif" WIDTH="95" HEIGHT="45" ALIGN="CENTER"><FONT SIZE="2" COLOR=#000000><I>');
		mydoc.write ('<A HREF="');
		mydoc.write (theURL);
		mydoc.write ('">');
		mydoc.write (theText);
		mydoc.write ('</A></I></FONT></TD></TR>');

}




