IE6下测试通过1.html-----------<script language="javascript" src="test.js"></script>
<script language="javascript">
init();
</script>
<a href="#" onclick="hi()">this is a test,onclick here!</a><br>test.js------------
function hi(){
obj=document.getElementById('Layer1');
obj.style.display=obj.style.display=='none'?'block':'none'
}function init(){
document.write("<div id=Layer1 style=display:none;position:absolute;width:200px;height:115px;z-index:1;left: 202px;top: 29px;><img src=1.GIF width=124 height=124 /></div>");
}