	//to execute the print command
	function printpage()
	{
		window.print();
	}
	

	//to execute the save as command
	function saveme()
	{
		if (document.execCommand)
		{
			document.execCommand("SaveAs","","");
			//document.execCommand("SaveAs", true, "D:\\Hello.asp");
		}
	}