<!--
function addToCart()
{
	var querystring = window.location.search.substring(1); // get the e-junkie query string "add to cart" details
	if(querystring.substring(0,24) == 'https://www.e-junkie.com'){   // if query string begins with the e-junkie domain
		EJEJC_lc(querystring) // pass the query string to and call the e-junkie cart function
	}
}
//-->