(function(){
//将命名空间IC注册到window
window['JSHide']={};
//隐藏侧边栏,并将图片换成右箭头图片
function yc()
{
document.getElementById("cloone").style.display ="none";
document.getElementById("img").innerHTML ="
";
}
window['JSHide']['yc']=yc;
//显示侧边栏,并将图片换成左箭头
function xs()
{
document.getElementById("cloone").style.display ="";
document.getElementById("img").innerHTML ="
";
}
window['JSHide']['xs']=xs;
})();