function Filled() {

	if ( (document.forms.Form1.articul.value == null) || (document.Form1.articul.value.length < 6) || (document.Form1.articul.value.length > 6) )
	{
		alert("Внимание!\nПоле \"Артикул\" должно содержать 6 цифр!");
		document.forms.Form1.articul.focus();
		return false;
	}
}