<!--

// Array Function

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the descriptions and names of the pages.

var pages = new makeArray("Select a Page",
                          "Home",
                          "Full-Color Nametags",
			  "Logo Only \(blank\) Nametags",
                          "Picture Perfect Photo ID's",
                          "First Impressions Visitor & VIP Passes",
                          "Engraved Metal Nametags",
		  "Engraved Plastic Nametags",
		  "Award and Appreciation Plaques",
		  "Wall and Cubicle Nameplates",
		  "Especially For Schools",
		  "Feedback Form",
		  "Customer Previews",
		  "Site Map");

// This array hold the URLs of the pages.

var urls = new makeArray("",
                         "index.html",
                         "digital.html",
			"logo-only.html",
                         "photoid.html",
                         "visitor.html",
                         "samplesm.html",
		 "plastic.html",
		 "plaques.html",
		 "nameplates.html",
		 "school-home.html",
		 "feedback.htm",
		"cussamp.php3?disp=quicklist",
		"sitemap.html");

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}

document.write('<b><center>Jump Directly To:</b>');
document.write('<td bgcolor="white"><FORM><SELECT NAME ="menu" onChange="goPage(this.form)"></td>');
    for (var i = 0; i < pages.length; i++) {
    document.write('<OPTION>' + pages[i]);
    }
document.write('</SELECT></FORM></center>');

//-->


