<html>
<head>
<script language="vbscript">
Sub PrintIt
window.print()
End Sub
</script>
<body>
This is some info<br><br>
<input type=button onClick="PrintIt" value="Print">
</body>
</html>
<html>
<head>
<script language="javascript">
function PrintIt(){
window.print()
}
</script>
<body>
This is some info<br><br>
<input type=button onClick="PrintIt()" value="Print">
</body>
</html>