Assuming I have outerpage.html
<html>
<head>
</head>
<body>
<input type="button" id="printPage" name="printPage" />
<input type="button" id="savePage" name="savePage" />
<iframe src="someOtherPage.html"></iframe>
</body>
</html>
How can I use Javascript to save and print someOtherPage.html when the respective buttons are clicked?