
var ft_options;
var stacking;

function optsPageFor(profile) {
	var url = "ft_options.php?profile=" + profile;
	var name = "ft_options";
	var features = "width=640 height=520 scrollbars resizable";
	ft_options = window.open(url, name, features);
	return false;
}

function stackInstructionPage() {
	var url = "../php-freeborn/stacking_instructions.html"
	var name = "stacking";
	var features = "width=520 height=620 scrollbars resizable";
	stacking = window.open(url, name, features);
	return false;
}
