$(document).ready(function(){
   $('#rma_form_rma').submit(showItemInfoRMA);
   $('#rma_form_sn').submit(showItemInfoSN);
   $('#buttonRMA').click(showItemInfoRMA);
   $('#buttonSN').click(showItemInfoSN);
});
function showItemInfoRMA() {
 $("div#status").html("<img style=\"margin-top: 3px;\" src=\"/images/wait_black.gif\">"); 
 $('div#status').load(             
     '/egain/get_status.php',            
     {rma_number_input: $('#rma_number_input').val(),
   submitted:""
  }          
   );
$("#rma_wide").animate( { height:"104px"}, 1000 );
$("div#status").fadeIn(1000);
return false;
}
function showItemInfoSN() {
   $("div#status").html("<img style=\"margin-top: 3px;\" src=\"/images/wait_black.gif\">"); 
   $('div#status').load(             
     '/egain/get_status.php',            
     {sn_number_input: $('#sn_number_input').val(),
   submitted:""
  }          
   );
$("#rma_wide").animate( { height:"104px"}, 1000 );
$("div#status").fadeIn(1000);
return false;

}



// JavaScript Document