function printarticle(){ 

content='<!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
content+='<head>';
content+='<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />';
content+='<link rel="stylesheet" type="text/css" href="http://' + window.location.hostname + '/css.css">';
content+='<link rel="stylesheet" type="text/css" href="http://' + window.location.hostname + '/styling.css" />';

contwidth = $('#content').width();
kroshka=$('.croshka').html();
content+='<div style="width: '+contwidth+'px;">';
content+='<h1 style="text-align: left;">Балтех - '+kroshka+'</h1>';

article=$('#content');
//article=article.replace(new RegExp(/<form>.*?<\/form>/),'');
//article.find('#contactFormArea').remove();
//article=article.replace(new RegExp("(/<div id=`contactFormArea`>.*?</div>)"),'');
 content+='<style type="text/css">';
 content+='form { visibility:hidden; }';
 content+='</style>';

content+=article.html();

content+='</div></body></html>';
w=window.open('about:blank');
w.document.open();
w.document.write( content );
w.document.close();

}

