function printContent(id){
	// GA track
	try {
	    pageTracker._trackPageview('/ga_print.html');
	} catch(e){}

	newwin=window.open('','printwin','left=100,top=100,width=800,height=600, scrollbars=yes');
	newwin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">\n');
	newwin.document.write('<HTML  xmlns="http://www.w3.org/1999/xhtml">\n');
	newwin.document.write('<HEAD>\n');
	newwin.document.write('<TITLE>World Oil</TITLE>\n');
	newwin.document.write('<LINK href="css/print.css" type=text/css rel=stylesheet>');
	newwin.document.write('<script>\n');

	newwin.document.write('function showPopup(strArea,strHTMLFile){\n');
	newwin.document.write('void(0);');
	newwin.document.write('}\n');
	
	newwin.document.write('function delayPopup(){\n');
	newwin.document.write('void(0);');
	newwin.document.write('}\n');
	
	newwin.document.write('function print_win(){\n');
	newwin.document.write('window.print();\n');
	newwin.document.write('}\n');

	newwin.document.write('<\/script>\n');
	newwin.document.write('</HEAD>\n');
	newwin.document.write('<BODY onload="print_win();" oncopy="event.returnValue=false;">\n');
	
	var str;
	str = '<div class="noprint floatright"> <a href="javascript:void(0);" onclick="window.print();">Print</a>&nbsp;&nbsp;&nbsp;<a href="javascript:void(0);" onclick="window.close();">Close</a></div>';
	str += "<IMG class=logo_print alt=\"world Oil\" src=\"images/logo-worldoil.jpg\">";
	str += "<SPAN class=copyright_print >Copying and distributing are prohibited without permission of the publisher</SPAN>" ;
	str += "<DIV class=background_print><IMG alt=\"\" src=\"images/bg_watermark.gif\"> </DIV>";

	str += '<div id="article-content">';
	str += document.getElementById(id).innerHTML;
	str += '</div>';

	str = str.replace("<TABLE width=465>","<TABLE>");	
	newwin.document.write(str);

	newwin.document.write('</BODY>\n');
	newwin.document.write('</HTML>\n');
	newwin.document.close();

}
