( function(){
//Register the namespace IC to window
window['JSHide']={};
//Hide the sidebar and replace the image with Right arrow image
function yc()
{
document.getElementById("cloone").style.display ="none";
document.getElementById("img").innerHTML ="< ;img src='Image/right arrow.png' width='10' height='10' longdesc='Image/right arrow.png' onclick='JSHide.xs()' />";
}
window['JSHide']['yc']=yc;
//Show the sidebar and change the image to the left arrow
function xs()
{
document.getElementById("cloone").style.display ="";
document.getElementById("img").innerHTML ="
";
}
window['JSHide'][' xs']=xs;
})();
"Insert"--"HTML "--"Script Object"---"Script", select the script file and insert it into the HTML file.