To make the print dialog automatically pop, put an OnLoad function in your Body tag that calls a function. That function would look similar to:
Code:
function printWin(){
window.print();
window.focus();
window.close();
}
There was some reason why the print function had to come first, but I can't for the life of me remember why.. *shrug*