Просмотр поста

.
rumit
blackvj (09.06.2012/10:06)
function show_hide(elem) {
obj = document.getElementById(elem);
if( obj.style.display == "none" ){
obj.style.display = "block";
}else{
obj.style.display = "none";
}
}


Мой
как сюда всунуть сылки?