i have the following function, which works fine in firefox, but will do nothing in IE8
function print(url) {
var w = window.open(url);
w.onload = function() {
w.print();
};
}
i want to open a webpage and immediately open the print dialogue.