se vuoi prova una cosa del genere (al momento non ho la stampante x farlo io)
basandomi sull' anteprima di stampa mi sembra vada con IE ma non in MOZ e derivati che comunque si potrebbero rimandare a stampa di nuova finestra
codice:
<html>
<head>
<title>newprint</title>
<link rel="alternate" media="print" href="newprint.htm" />
<style type="text/css">
</style>
<script type="text/javascript">
function stampa(pag){
	var link_=(document.getElementsByTagName)?document.getElementsByTagName('link'):false
	if(!link_){
		var newWin=window.open(pag,'_stampa','menubar=1,toolbar=1,location=0,status=0,resizable=1,scrollbars=1,width=640,height=480')
		newWin.focus()
		newWin.print()
	}
	else {
		for (var k=0;k<link_.length;k++){
			if(link_[k].media=='print') link_[k].href=pag;
		}
		self.print()
	}
}
</script>
</head>
<body>
prima
seconda
</body>
</html>
copia il codice che appare premendo il tastino quote in basso a destra
ciao