50分怎么默认已点击
<td width="100%" bgcolor="#0099CC" class="HLButton" style="cursor:hand" onmousedown="window.event.cancelBubble=true;" onclick="maxLeft()" onmouseover="this.className='mov';" onMouseOut="this.className='HLButton';"><strong><font size="2" id="arrow">></font></strong></td>
function maxLeft(){
if(isclose!="1"){
document.all.leftTD.style.width = "0"
document.all.leftTD.style.display="none"
isclose = "1"
document.all.arrow.innerText = ">"
}
else{
document.all.leftTD.style.width = oTable.offsetWidth*0.18
document.all.leftTD.style.display=""
document.all.arrow.innerText = "<"
isclose = "0"
}
}