// -------- LAUNCHES INFINITE IN AS MANY FLAVORS AS YOU WANT --------

IE5=NN6=false
if(document.all)IE5=true
else if(document.getElementById)NN6=true

function showDiv(what,which,numdivs) {// PATHS FOR ON AND OFF IMAGES
//	TURN OFF ALL LAYERS AND/OR TABS
	for(i=0;i<numdivs;i++) {
		if(IE5) eval("document.all."+what+i+".style.display='none'")
		if(NN6) eval("document.getElementById('"+what+i+"').style.display='none'")

		if (what == "qtable") {
		document.getElementById("tab"+i).style.backgroundImage='url(/3MContentRetrievalAPI/BlobServlet?assetId=1180594103079&assetType=MMM_Image&blobAttribute=ThumbnailImage)';}}

//	GO BACK THROUGH AND TURN ON THE DESIRED LAYER AND/OR TABS
	if(IE5) eval("document.all."+what+which+".style.display='block'")
	if(NN6) eval("document.getElementById('"+what+which+"').style.display='inline'")

	if (what == "qtable") {
    document.getElementById("tab"+which).style.backgroundImage='url(/3MContentRetrievalAPI/BlobServlet?assetId=1180594103079&assetType=MMM_Image&blobAttribute=ImageFile)';	}}