function user_login_init(){var et=document.getElementById('login_text');if(!et){return;}if(username.match(/^Guest_\d+/)){et.innerHTML='<a id="login_link" onClick="showLogin();">Ввести ник</a>';}else{et.innerHTML='Привет, <span class="nick">'+username+'</span>. <a id="login_link" onClick="Logout();">Выйти...</a>';}};var cw=false;function showLogin(){var es=document.getElementById('login_form');if(cw){es.style.display='none';cw=false;}else{es.style.display='block';document.forms['login'].username.focus();cw=true;}};function change_username(){var login_form=document.forms['login'];var cP=login_form.username.value;var fD=login_form.userlink.value;if(cP.match(/[<>]/)){cP='Мудак с упячки';}document.cookie="talxy_user_name="+escape(cP)+"; path=/; expires=Wed, 10 Dec 2014 00:35:16 GMT";document.cookie="talxy_user_link="+escape(fD)+"; path=/; expires=Wed, 10 Dec 2014 00:35:16 GMT";document.location='http://talxy.ru/';};function Logout(){document.cookie="talxy_user_name=; path=/; expires=Wed, 10 Dec 1977 00:35:16 GMT";document.cookie="talxy_user_link=; path=/; expires=Wed, 10 Dec 1977 00:35:16 GMT";document.location='http://talxy.ru/';} 

