// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/2009/";

/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Print() { 
	var whatLanguage = location.pathname;

	var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25";
	//var sTitle = document.getElementById('printTitle').innerHTML;
	var sContent = document.getElementById('content').innerHTML;
	
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>National Center for Law and Economic Justice</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/nclej-print.css\"></head>');
		winprint.document.write('<body>'); 
		winprint.document.write('<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">');
		winprint.document.write('<tr><td width=\"100%\">');
		winprint.document.write('<img src=\"'+link_path+'images/wrapper/logo_print.gif\" alt=\"National Center for Law and Economic Justice\" width=\"100\" height=\"125\" style=\"padding-left: 16px;\" border=\"0\"><br><br>');
		//winprint.document.write(sTitle);
		winprint.document.write(sContent);
		winprint.document.write('<hr size=\"1\"><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>&copy; Copyright National Center for Law and Economic Justice<br>275 Seventh Avenue, Suite 1506; New York, NY 10001-6708, Phone: (212) 633-6967 email: info (at) nclej.org<br><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>All content 1997-2009 by the National Center for Law and Economic Justice, All Rights Reserved.</small></td></tr>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus(); 
	}
	
/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function PrintHome() { 
	var whatLanguage = location.pathname;

	var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25";
	//var sTitle = document.getElementById('printTitle').innerHTML;
	var sContent = document.getElementById('home-content').innerHTML;
	
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>National Center for Law and Economic Justice</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/nclej-print.css\"></head>');
		winprint.document.write('<body class=\"#print\">'); 
		winprint.document.write('<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">');
		winprint.document.write('<tr><td width=\"100%\">');
		winprint.document.write('<img src=\"'+link_path+'images/wrapper/logo_print.gif\" alt=\"National Center for Law and Economic Justice\" width=\"100\" height=\"125\" border=\"0\"><br><br>');
		//winprint.document.write(sTitle);
		winprint.document.write(sContent);
		winprint.document.write('<hr size=\"1\"><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>&copy; Copyright National Center for Law and Economic Justice<br>275 Seventh Avenue, Suite 1506; New York, NY 10001-6708, Phone: (212) 633-6967 email: info (at) nclej.org<br><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>All content 1997-2009 by the National Center for Law and Economic Justice, All Rights Reserved.</small></td></tr>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus(); 
	}
