function clipLayer(_layerid, _t, _r, _b, _l) { var agt=navigator.userAgent.toLowerCase(); var net6 = ((((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) && (agt.indexOf('webtv')==-1))) && ( parseInt(navigator.appVersion) >= 5)); if (net6) { eval("window.document.getElementById(_layerid).style.clip = \"rect(" + _t + " " + _r + " " + _b + " " + _l + ")\""); } else {if (navigator.appName == "Netscape") { eval("window.document." + _layerid + ".clip.top = " + _t); eval("window.document." + _layerid + ".clip.bottom = " + _b); eval("window.document." + _layerid + ".clip.right = " + _r);eval("window.document." + _layerid + ".clip.left = " + _l); } else {eval("window.document.all." + _layerid + ".style.clip = \"rect(" + _t + " " + _r + " " + _b + " " + _l + ")\""); } }}