﻿function PrintElem(elem) {
    Popup($(elem).html());
}

function Popup(data) {
    var mywindow = window.open('', 'mydiv', 'height=400,width=600');
    mywindow.document.write('<html><head><title>my div</title>');
    mywindow.document.write('<link rel="stylesheet" href="http://www.getsix.pl/getsixstyles.css" type="text/css" />');
    mywindow.document.write('</head><body ><div class="body-area-center">');
    mywindow.document.write(data);
    mywindow.document.write('</div></body></html>');
    mywindow.document.close();
    mywindow.print();
    //if ($.browser.msie) {
    //    mywindow.close();
    //}
    return true;
}
