function popUp( filename, width, height ) 
{
	left_ = (screen.width  - width)/2;
	top_  = (screen.height - height)/2;

	window.open( filename, '', 'status=yes,menubar=no,toolbar=no,resizable=no,scrollbars=yes,width='+
		width+',height='+height+', left='+left_+',top='+top_);
}

function image( filename, width, height ) 
{
	left_ = (screen.width  - width)/2;
	top_  = (screen.height - height)/2;

	window.open( '/upload/images/?file='+filename, '', 'status=yes,menubar=no,toolbar=no,resizable=no,scrollbars=no,width='+
		width+',height='+height+', left='+left_+',top='+top_);
}

function pre_faq()
{
	if ( document.faq.name.value == '' )
	{
		alert( 'Введите Ваше имя !' );
		document.faq.name.focus();
		return false;
	}

	if ( document.faq.email.value == '' )
	{
		alert( 'Введите адрес Вашей электронной почты !' );
		document.faq.email.focus();
		return false;
	}

	if ( document.faq.question.value == '' )
	{
		alert( 'Введите Ваш вопрос !' );
		document.faq.question.focus();
		return false;
	}

	return true;
}
