
  <!-- Hide from older browsers
		// Original JavaScript code by Duncan Crombie: dcrombie@chirp.com.au
		// Please acknowledge use of this code by including this header.
		
		
		  var bites = document.cookie.split("; "); // break cookie into array of bites
		
		  function getCookie(name) {
			for (i=0; i < bites.length; i++) {
			  nextbite = bites[i].split("="); // break into name and value
			  if (nextbite[0] == name) // if name matches
				return unescape(nextbite[1]); // return value
			}
			return null; // if no match return null
		  }
		
		  var today = new Date();
		  var expiry = new Date(today.getTime() + 1 * 24 * 60 * 60 * 1000); // plus 1 days
		
		  function setCookie(name, value) { // use: setCookie("name", value);
			  alert("Set: "+name+" '"+value+"'");
			if (value != null && value != "")
				document.cookie=name + "=" + escape(value) + "; expires=" + expiry.toGMTString();
				bites = document.cookie.split("; "); // update cookie bites
		  }
		
		  var data_str = getCookie("als_favorites"); // retrieve values or use default

		if(data_str==null || data_str==""){
		  data_str = "_";
		  };

		  var data_array = data_str.split(","); // convert cookie value to array
		  
		
		
		
	function push_array(var_name, value){ //v1.0 Dave Conlin

	if(!window.print){
		new_index = var_name.length+1;
		var_name[new_index] = value;
		//alert("Setting "+var_name+"["+new_index+"] = "+value);
	}else{;
		var_name.push(value);
	};
};

  // Stop hiding -->
