function jPrintArea(el) {
    var iframe=document.createElement('IFRAME');
    var doc=null;
    $(iframe).attr('style','position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
    document.body.appendChild(iframe);
    doc=iframe.contentWindow.document;
    doc.write('<link type="text/css" rel="stylesheet" href="/wp-content/themes/vvsyn/print.css"></link>');
    $(el).children('div.tags,div.social').hide();
    doc.write('<div class="'+$(el).attr("class")+'">'+$(el).html()+'</div>');
    $(el).children('div.tags,div.social').show();
    doc.close();
    iframe.contentWindow.focus();
    iframe.contentWindow.print();
    alert('Skriver ut... Stäng inte ner den här rutan innan du har skrivit ut artikeln.');
    document.body.removeChild(iframe);
}
