
function collapse(id){
document.getElementById("rfp_"+id).style.height="35px";
document.getElementById("rfp_"+id).style.overflow="hidden";
document.getElementById("action_"+id).innerHTML= '<a title="expand" onclick="expand('+id+');"><img src="images/expand.gif"/></a>';
}
function expand(id) {
obj = document.getElementById( "rfp_" + id );
if( navigator.appName.toUpperCase().match(/NETSCAPE/) != null ) {
obj.style.height="140px";
obj.style.overflow="auto";
} else {
<!--Height of the expanded table-->
document.getElementById("rfp_"+id).style.overflow="auto";
document.getElementById("rfp_"+id).style.height="auto";
}
document.getElementById("action_"+id).innerHTML= '<a title="collapse" onclick="collapse('+id+');"><img src="images/collapse.gif"/></a>';
}

