/*
---------------------------------------------------------------------------------------------
	DISCLAIMER ALERT: This file includes the function that forces an alert window to
	come up before somebody order an item. If they do not click "OK" in agreement with
	the terms, they will not be allowed to order the item.  Slick, eh?
---------------------------------------------------------------------------------------------
*/

/*
**************************************************
	begin function for disclaimer alert
**************************************************
*/
	function OpenDisclaimerAlert() {
		var answer;
		
		answer = confirm("By clicking OK, I agree to the following:\n\nI understand that the biological mechanisms of response from function generators\nand other equipment described and sold on this website used experimentally are\nunverified but will employ this equipment for experimental use only, without any\nexpectation of curing any ailment. Next, I understand that possible negative\nphysical and/or mental effects, unknown to me and/or Future Tech Today Inc.\nmight possibly result from use of this equipment.\n\nFurthermore, I intend to undertake responsible experimentation and voluntarily\naccept all responsibility for the application of this equipment. Moreover, I will not\nhold Future Tech Today Inc., its distributors and/or associates responsible for\nany consequences, harmful or otherwise, that may occur as a result of the use\nof this equipment.\n\nFuture Tech Today Inc. 8/7/02");

		if(!answer) {
			history.go(-1);
		}
	}

/*
**************************************************
	end function for disclaimer alert
**************************************************
*/