function set_current_page(value) {
	document.pager.current_page.value = value;
	//alert(document.pager.current_page.value);
	document.pager.submit();
}

function warning_delete(path) {
	if(confirm('If you have offers to exchange this product to any other, they will be whether discarded or deleted.')) {
		top.location.href=path;
	}
}

function warning_user_delete(path) {
	if(confirm('Do you really want to delete this proposition?')) {
		top.location.href=path;
	}
}

function warning_user_apply(path) {
	if(confirm('Do you really want to apply this proposition?')) {
		top.location.href=path;
		alert('Proposition is applied.\n Go to your downloads to get new products.');
	}
}

function warning_user_discard(path) {
	if(confirm('Do you really want to discard this proposition?')) {
		top.location.href=path;
		alert('Proposition is discarded.');
	}
}