// JavaScript Document

function printable_version( id, title )
{
	var newWin = window.open('', '_blank');
	var target = $('#' + id);

	var data = new Object();
	data.title = title;
	data.body = target.html();
	
	$.post
	(
	 	'/programs/electedboardretreats/printable_template.php'
		,data
		,function(reply, textStatus )
		{
			if( textStatus == 'success' )
			{
				newWin.document.open();
				newWin.document.write(reply);
				newWin.document.close();
			}
			else
			{
				alert('Error: ' + textStatus);
			}
		}
		,'html'
	);
	
}