function setupInfo(page,title,hgt){
    this.who = page;
    this.page = "index.html?"+page+".html";
    this.title = title;

    x1 = page.indexOf("_");
    x = page.lastIndexOf("_");
    if (x == x1 ){
        this.subMenuItem = page.substring(0, x1);
    }
    else{
	this.subMenuItem = "prod";
    }
    if (0 <= x)
        page = page.substring(x+1, page.length); 

    this.titleImage = "images\\"+page+"_title.gif";
    this.menuItem = page;
    this.height = hgt;
    this.curHgt = hgt;
    this.detail = this.who + "Detail";
}

