Вот код:
// *** Рисует окошко авторизации на сайте. Высокохудожественно
function domikLoginWin()
{
jQuery("#authWindow").dialog({
width: 400,
height: 250,
modal: true,
title: 'Вход на сайт',
//open: function(){$('embed').hide();},
//close: function(){$('embed').show();},
buttons: {'Войти': function(){$('#authForm').submit();}}
});
}
function domikAuth(f)
{
if(f==undefined) f='';
jQuery.post(location.href, jQuery('#authForm'+f).serialize(), function(data)
{
if (data.ok==1)
location.reload();
else
jQuery('#authErrorMessage'+f).html(data.error);
}, 'json');
}
function seoSheet(n)
{
if( jQuery('#seoSheetDiv'+n).css('display') == 'none')
jQuery('#seoSheetDiv'+n).show('slow');
else
jQuery('#seoSheetDiv'+n).hide('slow');
}
function tmMove(n, a){
for (i=1; i<=3; ++i){
jQuery('#tmLink'+i).removeClass('active');
//jQuery('#tmPanel'+i).hide();
jQuery('#tmNosik').removeClass('nosik'+i);
}
jQuery('#tmLink'+n).addClass('active');
//jQuery('#tmPanel'+n).show();
jQuery('#tmNosik').addClass('nosik'+n);
if (n>1 && a==1)
location.href=urlpath+'cabinet/add-object.html';
if (n>1 && a!=1)
location.href=urlpath+'cabinet/registration.html?registerPage='+urlpath+'cabinet/add-object.html';
}
походу немного не тот код скинул..