/* javascript for "Continue Shopping" button 

 * Continue Shopping Script created by dotCOM Host by Stephen Packer which saves the current web page URL into a cookie so the shopping cart can get back to it easily

 * Use the following code to include it on HTML pages (best to do it at the bottom, just before </body>):
<script language="javascript" type="text/javascript" src="/css/continueshopping.js"></script>

 * and the following to create a "continue shopping" link
<a href="/" onClick="continueShopping(); return false;">Continue Shopping</a>

 * and the following to create a "continue shopping" button
<input type="button" value="Continue Shopping" onClick="continueShopping();" />
*/

function continueShopping() {
    var lasthtmluri = getCookie('lasthtmluri');
    if (lasthtmluri) {
        window.location.href=getCookie('lasthtmluri');
    } else
        window.location.href='/';
}
function getCookie( name ) {
	var start = document.cookie.indexOf( name + "=" );
	var len = start + name.length + 1;
	if ( ( !start ) && ( name != document.cookie.substring( 0, name.length ) ) )
	{
		return null;
	}
	if ( start == -1 ) return null;
	var end = document.cookie.indexOf( ";", len );
	if ( end == -1 ) end = document.cookie.length;
	return unescape( document.cookie.substring( len, end ) );
}
function setCookie( name, value, expires, path, domain, secure ) {
	var today = new Date();
	today.setTime( today.getTime() );
	if ( expires ) {
		expires = expires * 1000 * 60 * 60 * 24;
	}
	var expires_date = new Date( today.getTime() + (expires) );

	document.cookie = name + "=" +escape( value ) +
		( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) + 
		( ( path ) ? ";path=" + path : "" ) + 
		( ( domain ) ? ";domain=" + domain : "" ) +
		( ( secure ) ? ";secure" : "" );
}
if (/\.html?$/.test(window.location.pathname))
    setCookie('lasthtmluri', window.location.href, 1, '/', '.cumulus-soaring.com');
