function shCatMenu(N) {

	var menu = document.getElementById('cm'+N);
	var imag = document.getElementById('ci'+N);

	if (menu.className=='dnone') {
		menu.className ='dyes';
		imag.src = '/templates/pictures/minus.gif';
		imag.alt = 'Свернуть';
		imag.title = 'Свернуть';
	}
	else {
		menu.className='dnone';
		imag.src = '/templates/pictures/plus.gif';
		imag.alt = 'Развернуть';
		imag.title = 'Развернуть';
	}
}

function dShow(M) 
{
  	if(!document.getElementById) return; 
    document.getElementById(M).style.display='';
}


function dClose(M) 
{
  	if(!document.getElementById) return; 
    document.getElementById(M).style.display='none';
}


function reloadNospam(id)
{
	document.getElementById('imgnum').innerHTML = '<img src="/scripts/nospam/image.jpg?id='+id+'&amp;rl='+Math.random()+'" alt="Контрольное число">';
}


function checkAuth()
{	
	if (
	document.getElementById('aemail').value && 
	document.getElementById('apass').value ){ 
		return true; 
	} else { 
		alert('Введите реквизиты авторизации!'); 
		return false; 
	}

	email=document.getElementById('aemail').value;
	var exmail=/^[a-z\.\-_0-9]+@[a-z\.\-0-9]+\.[a-z]{2,}$/i;
	if (email && !exmail.test(email)){
		alert("Адрес электронной почты был введен некорректно.");
		return false;
	}
	
}