function PrintThisPage() 
	{ 
	   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
		   sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 
	
	   var sContent = document.getElementById('print-content').innerHTML;
	   var sFooter = document.getElementById('print-footer').innerHTML;
	   
	   var winprint=window.open("","",sOption); 
		   winprint.document.open(); 
		   winprint.document.write('<html><head><link href=common/base.css rel=Stylesheet></head><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>'); 
		   winprint.document.write('<img src=images/spacer.gif height=12 width=1 alt=\"\"><br><img src=images/spacer.gif height=1 width=12 alt=\"\"><img src=images/nedg_logo.gif alt=\'New Economy Development Group\' border=0 width=223><br><img src=images/spacer.gif height=12 width=1 alt=\"\"><br>')
		   winprint.document.write('<table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td rowspan=2 width=12><img src=images/spacer.gif height=1 width=57 alt=\"\"></td><td valign=top>');
		   winprint.document.write(sContent);
		   winprint.document.write('</td><td rowspan=2 width=12><img src=images/spacer.gif height=1 width=12 alt=\"\"></td></tr><tr><td>');
		   winprint.document.write('<br><hr size=\"1\">');
		   winprint.document.write(sFooter);
		   winprint.document.write('</td></tr></table></body></html>'); 
		   winprint.document.close(); 
		   winprint.focus(); 
	}
