    function arraymaker() {
	this.length = arraymaker.arguments.length
	for (var i = 0; i < this.length; i++) {
	    this[i+1] = arraymaker.arguments[i];
	}
    }




if (Vendor==1 && VendorSpecificType=="Mill")
{
    var descripts = new arraymaker
    (
	"Select Another Area",
	"----------------------",
	VendorSpecificName + " Inquiry",
	"Modify User Profile",
	"RFQ History",
	"PO History",
	"Reports",
	"Log Off"
    );


    var url = new arraymaker
    (	
	"",
	"",
	"mill_direct.asp",
	"user_preferences.asp",
	"rfq_history.asp",
	"po_history.asp",
	"reports.asp",
	"logout.asp"
    );
}
else if (Vendor==1 && VendorSpecificType=="ServiceCenter")
{
    var descripts = new arraymaker
    (
	"Select Another Area",
	"----------------------",
	VendorSpecificName + " Inquiry",
	"Modify User Profile",
	"RFQ History",
	"PO History",
	"Reports",
	"Log Off"
    );


    var url = new arraymaker
    (	
	"",
	"",
	"quick_quote.asp",
	"user_preferences.asp",
	"rfq_history.asp",
	"po_history.asp",
	"reports.asp",
	"logout.asp"
    );
}
else if (Demo==1 || NASAManagement==1)
{
    var descripts = new arraymaker
    (
	"Select Another Area",
	"----------------------",
	"Material Page",
	"Service Center Inquiry",
	"Mill Direct Inquiry",
	"Modify User Profile",
	"RFQ History",
	"PO History",
	"NASA Reports",
	"NASA Management Console",
	"Reports",
	"Charts & Graphs",
	"Admin Console",
	"Log Off"
    );


    var url = new arraymaker
    (	
	"",
	"",
	"material.asp",
	"quick_quote.asp",
	"mill_direct.asp",
	"user_preferences.asp",
	"rfq_history.asp",
	"po_history.asp",
	"rfq_report.asp",
	"nasaconsole.asp",
 	"reports.asp",
	"charts.asp",
	"admin/admin_console.asp",
	"logout.asp"
    );
}
else
{
    var descripts = new arraymaker
    (
	"Select Another Area",
	"----------------------",
	"Material Page",
	"Service Center Inquiry",
	"Mill Direct Inquiry",
	"Modify User Profile",
	"RFQ History",
	"PO History",
	"Reports",
	"Log Off"
    );


    var url = new arraymaker
    (	
	"",
	"",
	"material.asp",
	"quick_quote.asp",
	"mill_direct.asp",
	"user_preferences.asp",
	"rfq_history.asp",
	"po_history.asp",
 	"reports.asp",
	"logout.asp"
    );
}


    function jumpPage(form) {
	i = form.SelectMenu.selectedIndex;
	if (i == 0){
	    return;
	}

	if (url[i+1] == "") {
	    return;
	}

	parent.location = url[i+1];
    }
