// JavaScript Document
// This code only executes if javascript is enabled
<!--
function AddToCartJsEnabled_cart() 
	{
	if (!document.getElementById)					// Browser doesn't support getElementsById method 
		return false; 
	if (d=document.getElementById('formIap'))	// Change Shopping Cart link to go to Cart	
		{
		d.setAttribute("action","http://www.thoribella.com/Cart/cart.php");				// Live Cart
//			d.setAttribute("action","https://www.sandbox.paypal.com/cgi-bin/webscr");	// Sandbox
		}
	if (d=document.getElementById('formIaw'))	// Change Shopping Cart link to go to Cart
		{
		d.setAttribute("action","http://www.thoribella.com/Cart/cart.php");				// Live Cart	
//		d.setAttribute("action","https://www.paypal.com/cgi-bin/webscr");				// Live PayPal
//			d.setAttribute("action","https://www.sandbox.paypal.com/cgi-bin/webscr");	// Sandbox
		}
	}
// -->
	