// JavaScript Document

function getCookie( c_name )
{		
	var i,x,y,ARRcookies=document.cookie.split(";");		
	for (i=0;i<ARRcookies.length;i++)
	{
 		x = ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  		y = ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  		x = x.replace(/^\s+|\s+$/g,"");
		if( x == c_name )
		{
			return unescape( y );
		}
  	}
}

function  setCookie(c_name, c_value, exdays)
{
	var cookie = c_name;
	cookie += "=" + c_value;
				
	// Append value with expeiration date
	if(exdays)
	{
		var exdate = new Date();			
		exdate.setDate(exdate.getDate() + exdays)					
		cookie += ";expires=" + exdate.toUTCString();
	}
	document.cookie = cookie;	
}

function googleBuyNow()
{ 

// API locations
var apiUrlSandbox = 
	new String('https://sandbox.google.com/checkout/api/checkout/v2/checkoutForm/Merchant/259666284856300');
var apiUrl =
	new String('https://checkout.google.com/api/checkout/v2/checkoutForm/Merchant/546033496954208');

// Button locations
var buttonImageSandbox = new String('https://sandbox.google.com/checkout/buttons/buy.gif');
var buttonImage = new String('https://checkout.google.com/buttons/buy.gif');
	
	
var buttonCode = new String();
buttonCode += '<form action="'+apiUrl+'" id="BB_BuyButtonForm" method="post" name="BB_BuyButtonForm" target="_top">';

buttonCode += '<input name="item_name_1" type="hidden" value="Fitlish Feet Transformation Program"/>';
buttonCode += '<input name="item_description_1" type="hidden" value="4 DVD Set and Foot Health Booklet"/>';
buttonCode += '<input name="item_quantity_1" type="hidden" value="1"/>';
buttonCode += '<input name="item_price_1" type="hidden" value="98.95"/>';
buttonCode += '<input name="item_currency_1" type="hidden" value="USD"/>';

buttonCode += '<input name="item_name_2" type="hidden" value="Bonus Foot Massage Kit"/>';
buttonCode += '<input name="item_description_2" type="hidden" value="Massage Balls and How to Videos"/>';
buttonCode += '<input name="item_quantity_2" type="hidden" value="1"/>';
buttonCode += '<input name="item_price_2" type="hidden" value="0.00"/>';
buttonCode += '<input name="item_currency_2" type="hidden" value="USD"/>';

buttonCode += '<input name="item_name_3" type="hidden" value="Bonus Guide to Making Speed Ropes"/>';
buttonCode += '<input name="item_description_3" type="hidden" value="5th Bonus DVD"/>';
buttonCode += '<input name="item_quantity_3" type="hidden" value="1"/>';
buttonCode += '<input name="item_price_3" type="hidden" value="0.00"/>';
buttonCode += '<input name="item_currency_3" type="hidden" value="USD"/>';

buttonCode += '<input name="item_name_4" type="hidden" value="Bonus Guide to making Kettlebell Weights"/>';
buttonCode += '<input name="item_description_4" type="hidden" value="5th Bonus DVD"/>';
buttonCode += '<input name="item_quantity_4" type="hidden" value="1"/>';
buttonCode += '<input name="item_price_4" type="hidden" value="0.00"/>';
buttonCode += '<input name="item_currency_4" type="hidden" value="USD"/>';

// Figure out how they were referred to fitlish feet and stuff that in the description
var tid = new String( getCookie('tid') );
if( tid != 'undefined' )
{
	buttonCode += '<input name="item_name_5" type="hidden" value="' + tid + '"/>';
	buttonCode += '<input name="item_description_5" type="hidden" value="' + tid + '"/>';
	buttonCode += '<input name="item_quantity_5" type="hidden" value="1"/>';
	buttonCode += '<input name="item_price_5" type="hidden" value="0"/>';
	buttonCode += '<input name="item_currency_5" type="hidden" value="USD"/>';	
}

buttonCode += '<input name="_charset_" type="hidden" value="utf-8"/>';
buttonCode += '<input alt="" src="'+buttonImage+'?merchant_id=259666284856300&amp;w=117&amp;h=48&amp;style=trans&amp;variant=text&amp;loc=en_US" type="image"/>';
buttonCode += '</form>';

document.write( buttonCode);

}

