window.onload = function(){	$('mainbtns').getElements('.btn').each(function(el){		el.addEvent('click',function(){			window.location.href = this.getChildren('a').get('href');		});	});};window.sendMessageForm = function(to){	window.Win = Wins.create('Отправить сообщение пользователю','');	Action('Message.sendMessage&render=message.sendform&to='+to,function(ret){		window.Win.setContent(ret).show();	});	return false;};window.feedbackForm = function(){	window.Win = Wins.create('Отправить сообщение пользователю','');	Action('Message.feedBackForm',function(ret){		window.Win.setContent(ret).show();	});	return false;};
