// JavaScript Document

function PrintContent(){
	var title = document.title;
	var content = document.getElementById('PrintableArea');
	var ventimp = window.open('', 'popimpr');
	var HtmlPrintCode = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml' xml:lang='cat-ES' lang='cat-ES'><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'/><title>"+title+"</title><link type='text/css' href='http://www.cineticd.com/consellcomarcal/design/ezflow/stylesheets/style.css' rel='stylesheet' /><!--[if lt IE 7]><style type='text/css'>div, img { behavior: url('http://www.cineticd.com/consellcomarcal/design/ezflow/stylesheets/iepngfix.htc') }</style><![endif]--></head><body><div class='content'>"+content.innerHTML+"</div></body></html>";
	ventimp.document.write( HtmlPrintCode );
	ventimp.document.close();
	ventimp.print();
	ventimp.close();
}