forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
358 B
18 lines
358 B
function showhide( id )
|
|
{
|
|
if( document.getElementById )
|
|
{
|
|
obj = document.getElementById( id );
|
|
if ( obj.style.display == "none" )
|
|
{
|
|
obj.style.display = "";
|
|
document.getElementById( 'span_' + id ).style.color = "#C13F45";
|
|
}
|
|
else
|
|
{
|
|
obj.style.display = "none";
|
|
document.getElementById( 'span_' + id ).style.color = "#497895";
|
|
}
|
|
}
|
|
}
|