
function openPrint(url){
    var newWin = window.open(url, "popup");
    newWin.document.close();
    newWin.print();
}
