/************************************************************************** 
*************************************************************************** 
*  Program Name: $Id: shopping_cart.js,v 1.20 2007/08/25 23:21:54 neo Exp $
*  Program Author:  Michael T. Schock
*  Creation Date: 05-15-2006
*  CVS Revision: $Revision: 1.20 $
*  Copyright (c) 2006
*************************************************************************** 
*************************************************************************** 
*  Program Summary:
*  Javascript functions shopping_cart.php
*
*
*************************************************************************** 
**************************************************************************/

//!  Continue shopping
/**  Send the user back to the calling page.  */
function Continue_Shopping()
{
	//  Variables
	var pageRefer = '';
	
	//  Get the page referer
	pageRefer = document.getElementById('Page_Refer').value;
	
	//  Set the page src to the calling page
	if(pageRefer == '')
		document.getElementById('Data_Form').action = "home.php";
	else
		document.getElementById('Data_Form').action = pageRefer;
	
	//  Submit the page
	document.Data_Form.submit();
}
