var helpFeatures;
var toggle = new Array(2);
	toggle['yes'] = 'no';
	toggle['no'] = 'yes';

function init() {
	helpFeatures = "height=400,width=550,scrollbars,resizable";
	if (navigator.appName=="Netscape")
		helpFeatures = helpFeatures + ",screenX=40,screenY=40";
	else
		helpFeatures = helpFeatures + ",top=40,left=40";
}

function help(app) {
	helpWindow = window.open(
	  "http://genome.slu.edu/cgi-bin/emboss.pl?_action=help&_app=" + app,
	  "EMBOSShelp", helpFeatures
	);
	helpWindow.focus();
}

function mycookie(value) {
	document.cookie='hide=' + toggle[value] + ';';
	location.reload();
}
