function hide()
{
var o = document.images[0];
top.b.cols='11,*';top.c.cols='0,*';
o.src="images/l.gif";
document.all.className='r';
}
function show()
{
var o = document.images[0];
top.b.cols='144,*';top.c.cols='133,11';
o.src="images/r.gif";
document.all.className='l';
}
function act(e)
{
var o = document.images[0];
if(o.src.match("images/r.gif")!=null)
{
hide();
}
else
{
show();
}
}