var fDesc=new Array(); fDesc[0] = "Android SDK Search is a browser extension that adds an 'ad' omnibox command and view source links for the Android SDK. This extension does two things: Adds an 'ad' command to the Chrome Omnibox ( For example, typing 'ad ViewGro' will bring up a list of all class names in the Android SDK matching 'ViewGro') and adds a '(view source)' link next to the SDK class name for class reference pages on developer.android.com."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }