function getFile(id, content){

	id = parseInt(id);
$.ajax({
   type: "POST",
   url: "/download.php",
   data: "pid="+id+"&content="+content,
   success: function(msg){
	  location.href = msg;
	 //alert( "Data Saved: '" + msg+"'" );
   }
 });
}
