function CheckoutToPaypal(quantity,price)
{
	if( quantity == 0 )
	{
		alert('Nothing in you cart!');
		return false;
	}
	
	var string = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=lorized16%40aol%2ecom&item_name=The%20Smart%20DVD&amount=' + price + '&quantity=' + quantity + '&no_shipping=0&no_note=1&currency_code=USD&lc=US&bn=PP%2dBuyNowBF&charset=UTF%2d8';
	window.open (string, "paypal", "width=800,height=480,scrollbars,location,resizable,status");
	return;
}

function Checkout(quantity,price)
{
	if( quantity == 0 )
	{
		alert('Nothing in you cart!');
		return false;
	}
	$('discountAlert').slideDown();
}


function setupPlayer(clipdiv)
{
	$('upperBodyClip').style.display = 'none';
	$('absClip').style.display 		 = 'none';
	$('lowerBodyClip').style.display = 'none';
	$(clipdiv).style.display 		 = 'block';
}