function trim(x){return x.replace(/^\s+|\s+$/g,'')}


////////////////////////////// admin_cat_add  /////////////////////////////////////
function cat_add(category_add)
{
	if(trim(document.forms['category_add'].elements['cat2_name'].value)==''){
	alert("Prosze podac nazwe kategorii.");
	document.forms.category_add.cat2_name.focus();
	return false;}

	if(document.forms['category_add'].elements['cat1_id'].value=='0'){
	alert("Prosze wybrac kategorie.");
	document.forms.category_add.cat1_id.focus();
	return false;}
}

////////////////////////////// admin_cat_edit  /////////////////////////////////////
function cat_edit(category_edit)
{
	if(trim(document.forms['category_edit'].elements['cat2_new_name'].value)==''){
	alert("Nazwa kategorii nie moza pozostac pusta.");
	document.forms.category_edit.cat2_new_name.focus();
	return false;}
}

////////////////////////////// admin_prd_add  /////////////////////////////////////
function prd_add(product_add)
{
	if(trim(document.forms['product_add'].elements['product_name'].value)==''){
	alert("Nazwa produktu nie moza pozostac pusta.");
	document.forms.product_add.product_name.focus();
	return false;}

	if(trim(document.forms['product_add'].elements['product_picture'].value)==''){
	alert("Pole zdjecie nie moze pozostac puste.");
	document.forms.product_add.product_picture.focus();
	return false;}
}

////////////////////////////// admin_prd_add  /////////////////////////////////////
function prd_edit(product_edit)
{
	if(trim(document.forms['product_edit'].elements['product_name'].value)==''){
	alert("Nazwa produktu nie moza pozostac pusta.");
	document.forms.product_edit.product_name.focus();
	return false;}
}

////////////////////////////// new_add  /////////////////////////////////////
function n_add(new_add)
{
	if(trim(document.forms['new_add'].elements['title'].value)==''){
	alert("Pole tytul nie moze pozostac puste.");
	document.forms.new_add.title.focus();
	return false;}

	if(trim(document.forms['new_add'].elements['desc'].value)==''){
	alert("Pole opis nie moze pozostac puste.");
	document.forms.new_add.desc.focus();
	return false;}

	if(trim(document.forms['new_add'].elements['picture'].value)==''){
	alert("Pole zdjecie nie moze pozostac puste.");
	document.forms.new_add.picture.focus();
	return false;}
}

////////////////////////////// new_edit  /////////////////////////////////////
function n_edit(new_edit)
{
	if(trim(document.forms['new_edit'].elements['title'].value)==''){
	alert("Pole tytul nie moze pozostac puste.");
	document.forms.new_edit.title.focus();
	return false;}

	if(trim(document.forms['new_edit'].elements['desc'].value)==''){
	alert("Pole opis nie moze pozostac puste.");
	document.forms.new_edit.desc.focus();
	return false;}
}

////////////////////////////// kontakt  /////////////////////////////////////
function w_kontakt()
{
	if(trim(document.forms['kontakt'].elements['email'].value)==''){
	alert("Prosze podac adres e-mail.");
	document.forms.kontakt.email.focus();
	return false;}
}
