// This is a data file
// DataStructure: 2-Level Tree, Root=0
// Driven by:
document.write ('<SCRIPT language="JavaScript" type="text/javascript" src="jscripts/tabpage.js"></SCRIPT>');

function Group (text) {
  this.text = text;
}

function Item(href, text, frame) {
  this.href = href;
  this.text = text;
  this.frame = frame;
}

var collection = new Array();
collection[0]	 = new Array();
collection[0][0] = new Group();
collection[0][1] = new Item("", "Protein",		"_self");
collection[0][2] = new Item("", "Peptide",		"_self");
collection[0][3] = new Item("", "Acid",			"_self");
collection[0][4] = new Item("", "Others",		"_self");

// PROTEIN
collection[1]	 = new Array();
collection[1][0] = new Group("Positive Ionization Mode");
collection[1][1] = new Item("lysozyme",		"Lysozyme",		"not_used");

// PEPTIDE
collection[2]	 = new Array();
collection[2][0] = new Group("Positive Ionization Mode");
collection[2][1] = new Item("grams",		"Gramicidin S",		"not_used");

// ACID
collection[3]	 = new Array();
collection[3][0] = new Group("Negative Ionization Mode");
collection[3][1] = new Item("phca",		"pHCA",			"not_used");

//OTHERS
collection[4]	 = new Array();
collection[4][0] = new Group("Positive Ionization Mode");
collection[4][1] = new Item("aminosugarder",	"Amino Sugar Derivative",	"not_used");
collection[4][2] = new Item("vx",		"VX Nerve Agent",		"not_used");
