$(function(){
		   $('.gotoUserPage a').each(function(){
						this.href = "#"
						$(this).bind('click',function(){
												window.location.href=wgServer+wgScript+'/user:'+wgUserName;  
													  })					
											})
			 
			 $('.cancel a').each(function(){
						this.href = "#"
						$(this).bind('click',function(){
												window.history.back(-1);
													  })					
											})								
		   })