function printWindow() 
{
	var bV = parseInt(navigator.appVersion);
	if (bV >= 4) 
	{
		window.print();
	}
}

function doSaveAs() 
{
	if (document.execCommand)
	{
		document.execCommand("SaveAs")
	}
	else 
	{
		alert("Save-feature available only in Internet Exlorer 5.x.")
	}
}