function delete_product(id){

	if(confirm("Are you sure you want to delete this product?"))
		window.location = 'delete_product.php?del_id='+id;
}
