function new_width(width) {
	return (width > screen.availWidth) ? screen.availWidth : width;
}

function new_height(height) {
	return (height > screen.availHeight) ? screen.availHeight : height;
}

function pokaz_produkt(id) {
	var width = new_width(550);
	var height = new_height(480);
	window.open('/produkt.php/' + id, 'produkt', 'width='+width+',height='+height+',left='+(screen.availWidth/2-width/2)+',top='+(screen.availHeight/2-height/2)+',menubar=no,resizable=yes,scrollbars=yes');
	return false;
}

function popup(w,h) {
	var width = new_width(w)+30;
	var height = new_height(h)+35;
	window.open('/popup.php/', 'popup', 'width='+width+',height='+height+',left='+(screen.availWidth/2-width/2)+',top='+(screen.availHeight/2-height/2)+',menubar=no,resizable=yes,scrollbars=no');
	return false;
}
function fullscreen(i) {
   window.open(i+"/", "promocja", "toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,directories=yes,location=yes,width="+screen.availWidth+",height="+screen.availHeight+",left=0,top=0");

   this.close();
	return false;
}

function zdjecie(i,w,h) {
	var width = new_width(w)+40;
	var height = new_height(h)+40;
	window.open('/zdjecie.php?i='+i, 'zdjecie', 'width='+width+',height='+height+',left='+(screen.availWidth/2-width/2)+',top='+(screen.availHeight/2-height/2)+',menubar=no,resizable=yes,scrollbars=yes');
	return false;
}

function staron(id) {
	eval("document.star_" + id + ".src='../i/menu_mark.gif'");
}

function staroff(id) {
	eval("document.star_" + id + ".src='../i/p.gif'");
}

function check_selcat_form(form) {
	if (form.katid.options[form.katid.options.selectedIndex].value == -1) {
		alert('Wybierz najpierw jakąś kategorię');
		return false;
	}
	return true;
}

function check_editcat_form(form) {
	if (form.nazwa.value == '') {
		alert('Podaj nazwę kategorii');
		return false;
	}
	
	return true;
}

function check_newcat_form(form) {
	if (form.nazwa.value == '') {
		alert('Podaj nazwę kategorii');
		return false;
	}

	return true;
}

function check_editscat_form(form) {
	return true;
}

function check_selprod_form(form) {
	if (form.katid.options[form.katid.options.selectedIndex].value == "") {
		alert('Wybierz najpierw jakąś podkategorię');
		return false;
	}
	return true;
}

function check_listprod_form(form) {
	return true;
}

function check_newprod_form(form) {
	if (form.nazwa.value == '') {
		alert('Podaj nazwę produktu');
		return false;
	}

	return true;
}

function check_prodedit_form(form) {
	if (form.nazwa.value == '') {
		alert('Podaj nazwę produktu');
		return false;
	}

	return true;
}

function check_new_news_form(form) {
	if (form.tytul.value == '') {
		alert('Podaj tytuł newsa');
		return false;
	}
	
	if (form.tresc.value == '') {
		alert('Podaj treść newsa');
		return false;
	}

	return true;
}

function check_new_motto_form(form) {
	if (form.tytul.value == '') {
		alert('Podaj tytuł sentencji');
		return false;
	}
	
	if (form.tresc.value == '') {
		alert('Podaj treść sentencji');
		return false;
	}

	return true;
}

function check_new_table_form(form) {
	if (form.nazwa.value == '') {
		alert('Podaj nazwę tabelki');
		return false;
	}

	if (form.cols.value == '') {
		alert('Podaj ilość kolumn');
		return false;
	}

       	if (form.rows.value == '') {
		alert('Podaj ilość wierszy');
		return false;
	}

	return true;
}
function check_selpage_form(form) {
	if (form.pagename.options[form.pagename.options.selectedIndex].value == "") {
		alert('Wybierz najpierw jakąś podstronę');
		return false;
	}
	return true;
}


