function linkMe(title) {
	mywindow = window.open("", "lwindow", "width=1000,height=140");
	mywindow.close();
	mywindow = window.open("", "lwindow", "width=1000,height=140");
	mywindow.document.open();
	mywindow.document.write("Cut and paste this URL into your <b>IM</b> or <b>email</b>:<br><br>");
	mywindow.document.write(document.URL + "#" + title + "<br><br>");
	mywindow.document.write("<i>This link may break if the article is moved off the " + document.URL + " webpage</i>");
	mywindow.document.close();
}

function embedMe(month, title) {
	mywindow = window.open("", "lwindow", "width=1100,height=840");
	mywindow.close();
	mywindow = window.open("", "lwindow", "width=1100,height=840");
	mywindow.document.open();
	mywindow.document.write('Cut and paste this snippet into your HTML document:<br><br>');
	mywindow.document.write('<pre>');
	mywindow.document.write('&lt;script language="javascript" type="text/javascript" src ="');
	mywindow.document.write('http://worthingtonscouts.org/' + month + '/');
	mywindow.document.write(title + '.js"&gt;&lt;/script&gt;');
	mywindow.document.write('</pre>');
	mywindow.document.write('<script language="javascript" type="text/javascript" src ="');
	mywindow.document.write('http://worthingtonscouts.org/' + month + '/');
	mywindow.document.write(title + '.js"></script>');
	mywindow.document.close();
}

