function rush(obj,col)
{
//if (col==undefined) { col='ffffff'; }

//if (obj==object) {
//if (col==undefined) { obj.style.borderBottomWidth='1px'; } else { obj.style.borderBottomWidth='5px'; } 
//obj.style.borderBottomColor='#'+col;
//obj.style.borderTopColor='#'+col;
//} else {
//document.getElementById (obj).style.borderBottomColor='#'+col;
//}

}

function hide(id)
{ 
e=document.getElementById(id);
e.style.visibility="hidden";
e.style.height="0";
e.style.width="0";
}

function show(id)
{
e=document.getElementById(id);
e.style.visibility="visible";
}
