// JavaScript Document

function printSelection(node){

	  var content=node.innerHTML
	  var pwin=window.open('','print_content','width=612,height=');
	
	  pwin.document.open();
	  pwin.document.write('<body onload="window.print()"><img src="http://67.225.176.228/wp-content/themes/benattar/images/estimate_header.gif" alt="" />'+content+'<img src="http://67.225.176.228/wp-content/themes/benattar/images/estimate_footer.gif" alt="" /></body></html>');
	  pwin.document.close();
	 
	  setTimeout(function(){pwin.close();},1000);
	
}
