function saveseller(ssUrl)
{  
	jQuery.ajax({
			type:'POST',
			dataType:'html',
			success:function(data, textStatus)
			{    
				window.location.href = "mailto:up@emailcheckout.com?subject=Seller Ref "+data+"&Body=%0DItem%20Name-%20$0.00,%0DItem%20Name-%20$0.00%0D%0DMax%20140%20Character,%20Replace%20Item%20Name-%20$0.00,%20(do%20not%20remove%20Dash)";
			},
			url: ssUrl,
			async:true
			}); 
}

function buyeremailcheckout(ssSubject, ssBodyData)
{ 
	window.location.href = "mailto:pay@emailcheckout.com?subject="+ssSubject+"&Body="+ssBodyData;
	return false;
}

function updateseller(data)
{ 
		window.location.href = "mailto:up@emailcheckout.com?subject=Seller Ref "+data+"&Body=%0DItem%20Name-%20$0.00,%0DItem%20Name-%20$0.00,%0DItem%20Name-%20$0.00,%0DItem%20Name-%20$0.00,%0DItem%20Name-%20$0.00%0D%0DMax%20140%20Character,%20Replace%20Item%20Name-%20$0.00,%20(do%20not%20remove%20Dash).";
}
