function showLayer(lname) { var theObj,name; if(lname != document.lastClick) { if (navigator.appName == 'Netscape' && document.layers != null) { name = "document.layers['" + lname + "']"; theObj = eval(name); if (theObj) theObj.visibility = 'show'; } else if (document.all != null) { name = "document.all['" + lname + "']"; theObj = eval(name); if (theObj) theObj.style.visibility = 'visible'; } } } function hideLayer(lname) { var theObj,name; if(lname != document.lastClick) { if (navigator.appName == 'Netscape' && document.layers != null) { name = "document.layers['" + lname + "']"; theObj = eval(name); if (theObj) theObj.visibility = 'hide'; } else if (document.all != null) { name = "document.all['" + lname + "']"; theObj = eval(name); if (theObj) theObj.style.visibility = 'hidden'; } } } function selectLayer(fname,lname) { var theObj,doc,name; name = "parent." + fname + ".document"; doc = eval(name); if (navigator.appName == 'Netscape' && doc.layers != null) { for (i=0; i