var win = 'width=800,height=600,top=0,left=0,copyhistory=no,directories=no,resizable=yes,menubar=no,location=no,scrollbars=yes';

function checkform(checkboxnum, pid) {	var str = '?products_id='+pid+'&';	flag=false;
	for (i=1; i<=checkboxnum; i++) {		if (document.getElementById('ch'+i).checked) {			flag=true;
			str+=document.getElementById('ch'+i).name+'=on&';
		}
	}
	for (i=0; i<document.cart_quantity.category.length; i++) {		if (document.cart_quantity.category[i].checked) str+='category='+document.cart_quantity.category[i].value;
	}

	if (flag) window.open(HttpHost + '/analog.php'+str, 'analog', win);
	else alert("Вы должны выбрать хотя бы одно свойство");
}