function GoBack(){
  history.go(-1);
}

function ViewParentOfShoppingCart() {
  if (!window.opener.closed)
    window.opener.focus();
  else 
    alert("The window you were originally browsing in has closed.\\n Please, open a new window to continue shopping.");
}