function confirmDelete( url ) {

	var question = confirm("Are you sure you want to delete this record?")

	if (question){

		window.location = url;

	}
}

$(document).ready(function(){  


   $('#UserProfileHideShow').click(function(){
     $('#UserProfile').toggle();
   });

   $('#UserHistoryHideShow').click(function(){
     $('#UserHistory').toggle();
   });

   $('#UserNotesHideShow').click(function(){
     $('#UserNotes').toggle();
   });

   $('#UserAddNotesHideShow').click(function(){
     $('#UserAddNotes').toggle();
   });


});