function AddToCart(form_name){
    the_form = eval('window.document.' + form_name);
	if(window.document.parent_product_form){
		the_form.special_requests.value = window.document.parent_product_form.special_requests.value;
	}
	the_form.submit();
}

function add_over(product_id){
	image_name = 'add_p' + product_id + 'image';
	theimage = eval('window.document.' + image_name);
	theimage.src = '/_sysimages/add_to_cart_mo.gif';
}

function add_out(product_id){
	image_name = 'add_p' + product_id + 'image';
	theimage = eval('window.document.' + image_name);
	theimage.src = '/_sysimages/add_to_cart.gif';
}