function areyousure(code) {
	if(confirm('Are you sure you want to remove this product?')) {
		formularz = document.getElementById('form'+code);
		formularz.submit();
	} else return false;
}
function changePage(newLoc) {
   nextPage = newLoc.options[newLoc.selectedIndex].value

   if (nextPage != "") {
    	location.href = 'site.php?id=products&browse='+nextPage
   }
}