// JavaScript Document
function savedata2()
{
	$.ajax(
	{
	   type: "POST",
	   cache: false,
	   url: 'export2.php',
	   data:'',
		 success: function(html)
		 {
			$("#body2").html(html);
		 }
	}
	);
 }
