// JavaScript Document
function expandc(cid) {
if (document.getElementById){
document.getElementById(cid).style.display="block"
return true
}
else
return false
}

function collapsec(cid) {
if (document.getElementById){
document.getElementById(cid).style.display="none"
return true
}
else
return false
}