/* Error report tab javascript */

$(document).ready(function() {
	var visable=0;						   
							   
  $("#errformid").hide();
  //toggle the componenet with class msg_body
  $("#ReportIT").click(function()
  {
	  if( visable == 0 ){
		  $("#errformid").show();
		  visable = 1;
	  }else
	  {
		$("#errformid").hide(); 
		visable = 0;
	  }
	
  });
});
