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