//
//  Artikel.js
//
function  Artikel (ThisForm) {
if  ( ThisForm.sProdNr.value.length != 5 )
	{
	//_D
	alert("Please give the item no. of five digits!");
	ThisForm.reset();
	ThisForm.sProdNr.focus();
	return false;
	}
else
	{
	ThisForm.action = "produkt.html?" + ThisForm.sProdNr.value;
	ThisForm.submit();
	return true;
	}
};


function  InitArtikel (ThisForm) {
ThisForm.reset();
ThisForm.sProdNr.focus();
};
