function printStreams()
{
	var title = new Array();
	var body = new Array();
	var tstr;
	var bstr;
	var str = '';
	
	for(var i=1;i<10;i++)
	{
		tstr = 'title' + i;
		bstr = 'body' + i;
		
		if(!document.getElementById(tstr))
		{
			break;
		}
		
		title.push(document.getElementById(tstr).innerHTML);
		body.push(document.getElementById(bstr).innerHTML);
	}
	
	for(i=0;i<title.length;i++)
	{
		title[i] = title[i].replace("rgb(204, 153, 51)", "rgb(0, 0, 0)");
		title[i] = title[i].replace("#cc9933", "#000000");		
		str += title[i] + "<div>&nbsp;</div>";
		str += body[i] + "<div>&nbsp;</div>";
	}
	
	
	var d = new Date();
	var year = d.getFullYear();
	 	
	var copyright = '&#169; Copyright ' + year + ' Strang Communications, All Rights Reserved.<br />';
    copyright += 'This article may not be published, rewritten or redistributed.';
	
    var streams_date = document.getElementById('streams_date').innerHTML;
	
	var  disp_setting="toolbar=no,location=no,directories=no,menubar=yes,";
 	disp_setting += "scrollbars=yes, height=600, resizable=yes, left=100, top=25"; 
	
 	var docprint=window.open("","",disp_setting);
	docprint.document.open(); 
   	docprint.document.write('<html><head><title>Streams of Revival - Printable Version</title>'); 
   	docprint.document.write('</head><body onLoad="self.print()">');
   	docprint.document.write('<div>' + streams_date + '</div><div>&nbsp;</div><div><span style=\'font-size:24px\'><strong>Streams of Revival</strong></span></div><div>&nbsp;</div><div>');
   	
	docprint.document.write(str);          
   	docprint.document.write('</div>');
   	docprint.document.write('<div>&nbsp;</div>');
   	docprint.document.write('<div style=\'text-align:center; font-size:12px\'>' + copyright + '</div>');  
   	
   	docprint.document.write('</body></html>'); 
   	docprint.document.close(); 
  	docprint.focus();

	return false;
}
/*
function printBibleGuide()
{
	var bible_guide = document.getElementById('bible_guide').innerHTML;
	bible_guide = bible_guide.replace(/rgb\([0-9]+\, [0-9]+\, [0-9]+\)/g, "rgb(0, 0, 0)");
	
	var copyright = '&#169; Copyright 2006 Strang Communications, All Rights Reserved.<br />';
    copyright += 'This article may not be published, rewritten or redistributed.';
	
	
	var  disp_setting="toolbar=no,location=no,directories=no,menubar=yes,";
 	disp_setting += "scrollbars=yes, height=600, resizable=yes, width=400, left=100, top=25"; 
	
 	var docprint=window.open("","",disp_setting);
	docprint.document.open(); 
   	docprint.document.write('<html><head><title>Fire In My Bones Bible Guide</title>'); 
   	docprint.document.write('</head><body onLoad="self.print()">');
   	docprint.document.write('<div>');
     	
	docprint.document.write(bible_guide);          
   	docprint.document.write('</div>');
   	//docprint.document.write('<div>&nbsp;</div>');
   	//docprint.document.write('<div style=\'text-align:center; font-size:12px\'>' + copyright + '</div>');  
   
   	docprint.document.write('</body></html>'); 
   	docprint.document.close(); 
  	docprint.focus(); 
	return false;
	
}*/