function clearform(which)
{
		which.value='';
		which.style.color='#999999';
}

function searchtxt(which)
{
if (which.value=="")
{
	if (which.name=="search")
	{
		which.value='Поиск';
		which.style.color='#cccccc';
	}
	if (which.name=="uid")
	{
		which.value='Логин';
		which.style.color='#999';
	}
	if (which.name=="pwd")
	{
		which.value='Пароль';
		which.style.color='#999';
	}
}
}

function togglesize(id, maxsize)
{	
	if(document.getElementById(id).className == '' && maxsize < document.getElementById(id).width)
	{
		document.getElementById(id).className = 'resizedimg';
	}
	else
	{
		document.getElementById(id).className = '';
	}
}

function ShowHide(id,id1) {
    obj = document.getElementsByTagName("div");
    if (obj[id].style.display == 'block'){
     obj[id].style.display = 'none';
    }
    else {
     obj[id].style.display = 'block';
    }
}

function ctrlEnter(event, formElem)
    {
    if((event.ctrlKey) && ((event.keyCode == 0xA)||(event.keyCode == 0xD)))
        {
        formElem.submit.click();
        }
    }
