function zPrint(oTgt){
    oTgt.focus();
    oTgt.print();
}

function printMe(oTgt){
    document.getElementById(oTgt).focus();
    document.getElementById(oTgt).print();
}