// JavaScript Document
function print_para(el_id){
if(document.getElementById != null) {
var hdr_txt = document.getElementById('hd_'+el_id).innerHTML;
hdr_txt = hdr_txt.replace(/<[^>]+>/ig,"");
var html_txt = '<html><head><title>'+ hdr_txt + '</title><\/head><body>';
html_txt += '<h1  style="text-align: center">';
html_txt += document.getElementById('hd_'+el_id).innerHTML;
html_txt += '<\/h1><font face="Georgia, Times New Roman, Times, serif" style=line-height:"120%">';
html_txt += document.getElementById(el_id).innerHTML;
html_txt += '<p>&copy; Will Ross &nbsp;&nbsp;http://willpower.4mg.com<\/p>';
html_txt += '<\/span><\/body><\/html>';
printwin = window.open("","PrintWin");
printwin.document.open();
printwin.document.write(html_txt);
printwin.document.close();
printwin.print(); }
else { 
alert("Modern Browser Needed For Link to Work..");
}
} 