function printWindow() {
window.print();
}

function doSaveAs() {
var bApp = navigator.appName;
	if (bApp == "Netscape") {
	alert('Save feature available only in Internet Explorer.\nInstead, try opening the frame in a separate window by right-clicking on it.');
	} else if (document.execCommand) {
	document.execCommand("SaveAs");
	} 
}