// JavaScript Document//Read the cookie property. This returns all cookies for this document.var allcookies = document.cookie;//Look for the start of the cookie named "continue_shopping"var pos = allcookies.indexOf("continue_shopping=");function callStore() {   cartel14.goToShopping();}function checkShopping() {//If we find a cookie by that name, run callStore function.	if (pos != -1) {	callStore();	}}