// JavaScript Document
function sent_report(){
	//alert($('item_info_insert').serialize());
	new Ajax.Request('../com_layer/sent_report.php', {
		method:'get',
		parameters: $('sentReport').serialize(),
		onLoaded:function(transport){
		  var response = transport.responseText || "no response text";
		  //$('loading').appear({ duration: 0.1 });
		  $('reportSuccess').appear({ duration: 0.5 });
		},
		onSuccess: function(transport){
		  var response = transport.responseText || "no response text";
		  //alert("Success! \n\n" + response);
		  $('divReportForm').hide({ duration: 0.5 });
		  //setTimeout ( "resetAddItem()", 2000 );
		},
		onFailure: function(){ alert('Something went wrong...') }
	  });
	
}
function resetAddItem(){
	document.itemFrom.reset();
	$('tabDetail').hide({ duration: 0.5});$('tabPhoto').appear({ duration: 0.5});
	$('done').hide({ duration: 0.5 });
}
