
function moz_ask()
{
	if (navigator.appName.indexOf('Netscape')!=-1)
		document.getElementById('ask').className='moz_ask';
	if (navigator.userAgent.indexOf('Opera')!=-1)
		document.getElementById('ask').className='opera_ask';
}

function pass_view()
{
	document.login.pass_carrier.style.display='none';
	document.login.pass.style.display='block';
	document.login.pass.focus();
}

function secret()
{
	left=getwindowwidth()-5;
	document.getElementById('secret').style.left=left +'px';
}

function getwindowwidth()      // Определение внутренней ширины окна браузера
    {
        if(navigator.appName.indexOf('Netscape')!=-1)
        {
            return window.innerWidth-20;
        }
        else if(navigator.appName.indexOf('Internet')!=-1)
        {
            return document.body.clientWidth;
        }
        self.resizeTo(screen.width,screen.height-25);
        self.moveTo(0,0);
        return getwindowwidth = screen.width-10;
    }
