function checkForm(which){
	
	var stat = true;

	if( document.getElementById('desc-rc').value == '' ){	stat = false;}
	if( document.getElementById('token-txt').value == '' ){	stat = false;}
	if( document.getElementById('pr_id').value == '' || document.getElementById('pr_id').value == '0'){	stat = false;}
	
	if( stat == false )
	{
		alert( 'Brak wpisanej treści recenzji, kodu z obrazka lub nie wybrano pozycji do której pisana jest recenzja' );
		return false;
	}
}




function check3(which){
	
	var stat = true;
	var msg;
	if( document.getElementById('nemail').value == '' ){	stat = false;}

	if( stat == false ){
		alert( 'Brak wpisanego adresu email \nAby dopisać się do newslettera i otrzymywać informację o nowościach w naszym sklepie niezbędne jest podanie swojego adres email.');
		return false;
	}
}