function is_final_id(property_name) {
	add_cart.product_id.value = eval( "add_cart." + property_name + ".value");
	if ( add_cart.product_id.value == '' ) {
		alert("you didnt choose a " + property_name);
		return false;
	} else {
		return true;
	}
}
